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 2ee12fa commit 7196360Copy full SHA for 7196360
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Set up Go
16
+ uses: actions/setup-go@v4
17
+ with:
18
+ go-version: '1.21'
19
20
+ - name: Gotestsum installer
21
+ uses: autero1/[email protected]
22
23
+ gotestsum_version: '1.11.0'
24
25
+ - name: Test
26
+ run: gotestsum --format testname ./...
0 commit comments