Run Windows tests on PRs too
Previously PRs would only do a build on Windows, which confusingly meant that PRs got a green tick for Windows despite not testing them. See discussion in #17019.
This commit is contained in:
parent
7a8374c162
commit
6df559f706
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@ -91,7 +91,7 @@ jobs:
|
||||
run: cargo build --quiet ${{ env.USE_SYSROOT_ABI }}
|
||||
|
||||
- name: Test
|
||||
if: matrix.os == 'ubuntu-latest' || github.event_name == 'push'
|
||||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' || github.event_name == 'push'
|
||||
run: cargo test ${{ env.USE_SYSROOT_ABI }} -- --nocapture --quiet
|
||||
|
||||
- name: Switch to stable toolchain
|
||||
|
Loading…
Reference in New Issue
Block a user