From 3f9ff51822f6ddbb95310d518697e904ca550c95 Mon Sep 17 00:00:00 2001 From: Nick McCready Date: Wed, 25 Mar 2026 21:20:46 -0400 Subject: [PATCH] ci: add tests summary job for branch protection --- .github/workflows/tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7d5f0e2..b0e9f6c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,3 +8,17 @@ on: jobs: tests: uses: brickhouse-tech/.github/.github/workflows/tests.yml@main + + tests-complete: + name: tests + needs: [tests] + runs-on: ubuntu-latest + if: always() + steps: + - name: Check test results + run: | + if [[ "${{ needs.tests.result }}" != "success" ]]; then + echo "Tests failed" + exit 1 + fi + echo "All tests passed"