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 a467450 + ccfd90f commit 12d219dCopy full SHA for 12d219d
.github/workflows/go-tests.yml
@@ -0,0 +1,25 @@
1
+name: Run Go Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v3
18
19
+ - name: Set up Go
20
+ uses: actions/setup-go@v4
21
+ with:
22
+ go-version: 1.23
23
24
+ - name: Run tests
25
+ run: go test ./... -v
0 commit comments