2020-11-27 20:16:42 +01:00
|
|
|
name: Go
|
|
|
|
|
2020-12-23 07:36:16 +01:00
|
|
|
on: [push, pull_request]
|
2020-11-27 20:16:42 +01: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.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/...
|
2020-12-23 07:36:16 +01:00
|
|
|
|
2020-11-27 20:16:42 +01:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
make magneticod
|
|
|
|
make magneticow
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
make test
|
2020-11-27 20:49:26 +01:00
|
|
|
|
2020-11-27 20:16:42 +01:00
|
|
|
- name: Lint
|
2020-11-27 20:49:26 +01:00
|
|
|
run: |
|
|
|
|
make staticcheck
|
|
|
|
|
|
|
|
- name: Check Formatting
|
2020-11-27 20:16:42 +01:00
|
|
|
run: |
|
|
|
|
make check-formatting
|