Skip to content

Commit

Permalink
[ci] run coverage on Windows as well
Browse files Browse the repository at this point in the history
There's a bunch of Windows-specific code that is covered, but isn't reflected
in the coverage metrics.
  • Loading branch information
sunshowers committed Dec 17, 2024
1 parent 066f4e4 commit b281d12
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ name: Test coverage
jobs:
coverage:
name: Collect test coverage
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
# nightly rust might break from time to time
continue-on-error: true
env:
Expand Down

0 comments on commit b281d12

Please sign in to comment.