From 776b02aafc3e4bc359555d72b201727fc523f602 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sat, 21 Jun 2025 19:48:53 -0400 Subject: [PATCH] ci: ensure run tests fails if eitehr tests outcome not success' --- .github/actions/run-tests/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index 57464fcb1..416be6fa7 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -77,8 +77,8 @@ runs: path: ${{ steps.row.outputs.file }} - name: Check test outcome - if: steps.unittests.outcome == 'failure' + if: (steps.unittests.outcome != 'success' || steps.legacytests.outcome != 'success') run: | - echo "Unit tests failed" + echo "Tests failed" exit 1 shell: bash