We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3912a8b commit 367bd5fCopy full SHA for 367bd5f
2 files changed
.github/workflows/run_tests.yml
@@ -0,0 +1,24 @@
1
+name: Run UIok tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ go-version: ["1.23", "1.24", "1.25"]
12
13
+ steps:
14
+ - uses: actions/checkout@v6
15
+ - name: Setup Go ${{ matrix.go-version }}
16
+ uses: actions/setup-go@v6
17
+ with:
18
+ go-version: ${{ matrix.go-version }}
19
+ - name: Install dependencies
20
+ run: |
21
+ go mod tidy
22
+ - name: Run go unit tests
23
24
+ make test
makefile
@@ -0,0 +1,3 @@
+test:
+ CGO_ENABLED=0 go clean -testcache && go test -v ./...
0 commit comments