Create go.yml
This commit is contained in:
parent
915700a6da
commit
2654d9507a
39
.github/workflows/go.yml
vendored
Normal file
39
.github/workflows/go.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: Go
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Set up Go 1.x
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.15
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install go-bindata
|
||||
run: |
|
||||
go get -u -v github.com/kevinburke/go-bindata/...
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
make magneticod
|
||||
make magneticow
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
make test
|
||||
|
||||
- name: Lint
|
||||
run: |
|
||||
make check-formatting
|
Loading…
Reference in New Issue
Block a user