diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6aa9b8..ad28fad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,3 +10,17 @@ jobs: uses: brickhouse-tech/.github/.github/workflows/tests.yml@main with: build: true + + 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"