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 eb100f7 commit 3531356Copy full SHA for 3531356
.github/workflows/test.yml
@@ -0,0 +1,20 @@
1
+on: [push, pull_request]
2
+
3
+jobs:
4
+ unit:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ os: [ "ubuntu", "windows", "macos" ]
9
+ go: [ "1.24.x", "1.25.x" ]
10
+ runs-on: ${{ matrix.os }}-latest
11
+ name: Tests (${{ matrix.os}}, Go ${{ matrix.go }})
12
+ timeout-minutes: 10
13
+ steps:
14
+ - uses: actions/checkout@v5
15
+ - uses: actions/setup-go@v6
16
+ with:
17
+ go-version: ${{ matrix.go }}
18
+ - run: go version
19
+ - name: run tests
20
+ run: go test -v -shuffle on ./...
0 commit comments