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 8825e39 commit 4e6b23dCopy full SHA for 4e6b23d
.github/workflows/ci.yml
@@ -33,9 +33,14 @@ jobs:
33
- name: Download dependencies
34
run: go mod download
35
36
- - name: Run tests
+ - name: Run tests (Unix)
37
+ if: runner.os != 'Windows'
38
run: go test -v -race -coverprofile=coverage.out ./...
39
40
+ - name: Run tests (Windows)
41
+ if: runner.os == 'Windows'
42
+ run: go test -v -race "-coverprofile=coverage.out" ./...
43
+
44
- name: Upload coverage
45
uses: codecov/codecov-action@v5
46
if: matrix.os == 'ubuntu-latest' && matrix.go == '1.24.4'
0 commit comments