commit - 7b30ed992ec2cb2c5689449b07be0f6af3cb9e21
commit + 7f1d21d368a8f7896c57c2480f6ec441b54f1e19
blob - /dev/null
blob + a4021c03d00a4dd48599defa87367912cf330e15 (mode 644)
--- /dev/null
+++ .github/workflows/go.yml
+name: Go
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: 1.16
+
+ - name: Build
+ run: go build -v ./...
+
+ - name: Test
+ run: go test -v ./...