magnetico/.github/workflows/go.yml
2020-12-23 09:36:16 +03:00

39 lines
652 B
YAML

name: Go
on: [push, pull_request]
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 staticcheck
- name: Check Formatting
run: |
make check-formatting