We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad35609 commit f10e998Copy full SHA for f10e998
.github/workflows/run_tests_and_coverage.yml
@@ -6,7 +6,7 @@ jobs:
6
runs-on: ${{ matrix.os }}
7
strategy:
8
matrix:
9
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest, macos-latest]
10
11
name: A job to run in docker container
12
steps:
@@ -19,12 +19,7 @@ jobs:
19
run: go mod download
20
21
- name: Run coverage
22
- run: |
23
- if [ "${{ runner.os }}" == "Windows" ]; then
24
- go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./...
25
- else
26
- go test -v -cover -race -coverprofile=coverage.txt -covermode=atomic ./...
27
- fi
+ run: go test -v -cover -race -coverprofile=coverage.txt -covermode=atomic ./...
28
29
- name: Upload coverage to Codecov
30
uses: codecov/codecov-action@v5
0 commit comments