Skip to content

Commit

Permalink
Remove windows from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
JelteF committed Aug 23, 2023
1 parent 9c4e6a4 commit 9775eba
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ jobs:
os:
- ubuntu
- macOS
- windows
toolchain:
- stable
- nightly
Expand Down Expand Up @@ -122,13 +121,36 @@ jobs:
# uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
uses: codecov/codecov-action@v3
with:
files: ./coverage.lcov
# Repository upload token - get it from codecov.io. Required only for private repositories
# token: # optional
# Specify whether the Codecov output should be verbose
verbose: true
fail_ci_if_error: true


windows-test:
strategy:
fail-fast: false
matrix:
os:
- windows
toolchain:
- stable
- nightly
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}

- run: cargo test --all-features
- name: rust-grcov
# You may pin to the exact commit or the version.
# uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248
uses: actions-rs/grcov@v0.1

#################
# Documentation #
#################
Expand Down

0 comments on commit 9775eba

Please sign in to comment.