From a273f8387383776118cdb66e41674c9a68a1c1f7 Mon Sep 17 00:00:00 2001 From: Semantic Versioner Date: Sat, 22 Jul 2023 04:50:33 -0400 Subject: [PATCH] GitHub Actions Iterations --- .github/workflows/unittests.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml index b4d0193..28c0a96 100644 --- a/.github/workflows/unittests.yaml +++ b/.github/workflows/unittests.yaml @@ -42,3 +42,7 @@ jobs: pytest-coverage-path: ./pytest-coverage.txt junitxml-path: ./pytest.xml if: github.event_name == 'pull_request' + + - name: Check results + run: | + grep -q "FAILED" pytest-coverage.txt && exit 1 || exit 0