From c1705a7b01dd1a5c1abb25aeca3a14d462a7791b Mon Sep 17 00:00:00 2001 From: Pi Lanningham Date: Mon, 12 Feb 2024 15:23:12 -0500 Subject: [PATCH] More iteration on failure? --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 81ca7c4..2381a13 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,9 +18,8 @@ jobs: - run: | # Run the tests set -o pipefail - set -e - aiken check | tee aiken.log - RESULT=$? + RESULT=0 + aiken check | tee aiken.log || RESULT=$? if [ $RESULT -ne 0 ]; then FAILING_TESTS=$(grep "FAIL" aiken.log -A 1) echo $FAILING_TESTS