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.
1 parent 51412f5 commit 248aae3Copy full SHA for 248aae3
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: ci
2
+on:
3
+ pull_request:
4
+ branches: [main]
5
+ push:
6
7
+
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Setup Go
15
+ uses: actions/setup-go@v2
16
+ with:
17
+ go-version: 1.17
18
+ - name: Build
19
+ run: go build -v ./...
20
+ - name: Test
21
+ run: go test -v
0 commit comments