Skip to content

Commit f10e998

Browse files
committed
remove windows ci tests.
1 parent ad35609 commit f10e998

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/run_tests_and_coverage.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [ubuntu-latest, macos-latest, windows-latest]
9+
os: [ubuntu-latest, macos-latest]
1010

1111
name: A job to run in docker container
1212
steps:
@@ -19,12 +19,7 @@ jobs:
1919
run: go mod download
2020

2121
- 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
22+
run: go test -v -cover -race -coverprofile=coverage.txt -covermode=atomic ./...
2823

2924
- name: Upload coverage to Codecov
3025
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)