From 0fee7c35940eca051d3947190c5b95e14be01e17 Mon Sep 17 00:00:00 2001 From: Keenan Tims Date: Wed, 18 Dec 2024 15:35:55 -0800 Subject: [PATCH] ci: report errors correctly --- .github/workflows/test.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 16b953f..06f7f02 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -49,16 +49,14 @@ jobs: - name: cargo test run: cargo test --lib - continue-on-error: true - name: rustfmt run: cargo fmt --all -- --check - continue-on-error: true - name: clippy run: cargo clippy --lib --tests -- -D warnings - continue-on-error: true + if: always() - name: full run run: cargo run --release - continue-on-error: true + if: always()