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 fb6901f commit 0dc9170Copy full SHA for 0dc9170
.github/workflows/test.yaml
@@ -51,7 +51,7 @@ jobs:
51
52
- name: Run tests (Windows)
53
if: matrix.os == 'windows-latest'
54
- run: mise run test
+ run: gotestsum --format testname -- -race ./...
55
56
- name: Calculate coverage
57
if: matrix.os == 'ubuntu-latest'
@@ -189,5 +189,10 @@ jobs:
189
coverage.out
190
coverage.html
191
192
- - name: Build (${{ matrix.os }})
+ - name: Build (Ubuntu)
193
+ if: matrix.os == 'ubuntu-latest'
194
run: mise run build
195
+
196
+ - name: Build (Windows)
197
+ if: matrix.os == 'windows-latest'
198
+ run: go build -v ./...
0 commit comments