We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d4c302 + 2a55631 commit 11f526bCopy full SHA for 11f526b
.github/workflow/ci.yml
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI Build & Test
2
+on:
3
+ push:
4
+ branches: [master]
5
+ pull_request:
6
7
+
8
+permissions: {}
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ with:
16
+ persist-credentials: false
17
18
+ - name: Set up Go
19
+ uses: actions/setup-go@v2
20
21
+ go-version: 1.16
22
+ - name: Build
23
+ run: go build -v ./...
24
+ - name: fmt
25
+ run: gofmt -s -l -e .
0 commit comments