WebHackersWeapons/.github/workflows/go.yml

34 lines
617 B
YAML
Raw Normal View History

2020-11-22 13:53:08 +00:00
name: Build
2020-11-22 13:50:12 +00:00
on:
push:
2021-07-18 12:47:08 +00:00
branches: [ main ]
2020-11-22 13:50:12 +00:00
pull_request:
2021-07-18 12:47:08 +00:00
branches: [ main ]
2020-11-22 13:50:12 +00:00
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: make contribute