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 c8a7f6c commit eaef416Copy full SHA for eaef416
.github/workflows/go.yaml
@@ -0,0 +1,26 @@
1
+name: Go Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v2
16
17
+ - name: Set up Go
18
+ uses: actions/setup-go@v3
19
+ with:
20
+ go-version: 1.22
21
22
+ - name: Install dependencies
23
+ run: go mod tidy
24
25
+ - name: Run tests
26
+ run: go test ./...
0 commit comments