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 13a5f3f commit 46c732aCopy full SHA for 46c732a
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Set up Go
17
+ uses: actions/setup-go@v3
18
+ with:
19
+ go-version: 1.19
20
21
+ - name: Build
22
+ run: go build -v ./...
23
24
+ - name: Test
25
+ run: go test ./...
0 commit comments