From e4f47b5b75ba933b790b2628ff2e7fa2ca5b0ec1 Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Tue, 24 Feb 2026 12:30:36 +0000 Subject: [PATCH] MAINT: Add all checks passed GHA job --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91f587f..ce8fa59 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -160,3 +160,17 @@ jobs: echo "Environment not installed" exit 1 fi + + all-checks-passed: + name: All checks passed + needs: test-cache-restore-install + runs-on: ubuntu-slim + if: always() + steps: + - name: Check if all jobs passed + run: | + if [ "${{ needs.test-cache-restore-install.result }}" != "success" ]; then + echo "test-cache-restore-install did not pass" + exit 1 + fi + echo "All checks passed successfully"