From 27ee6e10380ec017bce23d7496de4de8a880c8b7 Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Fri, 6 Feb 2026 14:29:23 +0100 Subject: [PATCH] ci: Enable debugging on Windows --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2021beb..1236d6e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,4 +30,11 @@ jobs: path: target key: ${{ matrix.os }}-${{ runner.arch }}-${{ hashFiles('Cargo.lock') }}-cargo-target - 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