We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f246a22 commit f5a77ceCopy full SHA for f5a77ce
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+name: Coverage
2
+
3
+on: push
4
5
+jobs:
6
+ coverage:
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ os:
11
+ - windows-latest
12
+ - ubuntu-latest
13
+ runs-on: ${{ matrix.os }}
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup go
19
+ uses: actions/setup-go@v5
20
+ with:
21
+ go-version: "1.24.0"
22
23
+ - name: Rum all tests
24
+ run: go test ./...
0 commit comments