Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
- name: Report Rust Toolchain
run: rustup show

- name: Install cargo nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest

- name: Rust Cache
uses: Swatinem/rust-cache@v2

Expand All @@ -46,4 +51,6 @@ jobs:
- name: Run Unit Tests
# Very loud on windows CI, which has been a source of instability
run: |
cargo test -vv -- --nocapture
cargo nextest run --no-fail-fast --no-capture --cargo-verbose --cargo-verbose
env:
RUST_BACKTRACE: 1
Loading