ci: Enable debugging on Windows

This commit is contained in:
Lorenz Leutgeb 2026-02-06 14:29:23 +01:00 committed by Fintan Halpenny
parent fefa28372d
commit 27ee6e1038
1 changed files with 8 additions and 1 deletions

View File

@ -30,4 +30,11 @@ jobs:
path: target path: target
key: ${{ matrix.os }}-${{ runner.arch }}-${{ hashFiles('Cargo.lock') }}-cargo-target key: ${{ matrix.os }}-${{ runner.arch }}-${{ hashFiles('Cargo.lock') }}-cargo-target
- run: cargo build --workspace --verbose --all-features - run: cargo build --workspace --verbose --all-features
- run: cargo test --workspace --verbose --all-features - if: runner.os != 'Windows'
run: cargo test --workspace --verbose --all-features -- --nocapture
- if: runner.os == 'Windows'
run: cargo test --workspace --verbose --all-features -- --nocapture
env:
RUST_BACKTRACE: full
RUST_LOG: trace
RUST_TEST_THREADS: 1