ci: ensure run tests fails if eitehr tests outcome not success'

This commit is contained in:
sithlord48
2025-06-21 19:48:53 -04:00
committed by Nick Bolton
parent 42cd01efd7
commit 776b02aafc

View File

@ -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