From 00775ad83cb98761af8299deea6d2428da24bd30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 24 Sep 2025 13:14:00 +0200 Subject: [PATCH] Apply suggestion from @getchoo Co-authored-by: Seth Flynn --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 471494f22..dcf0814d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,10 +44,14 @@ jobs: basic-checks: name: aggregate basic checks + if: ${{ always() }} runs-on: ubuntu-24.04 needs: [pre-commit-checks, eval] steps: - - run: ":" # Dummy step + - name: Exit with any errors + if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} + run: | + exit 1 tests: needs: basic-checks