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