Skip to content

Commit

Permalink
don't signal failure on 0 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Sep 13, 2024
1 parent 43bbd34 commit e631565
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/frog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,11 @@ jobs:
cd frogtests
frog_bin=/usr/local/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib ./testaction.sh
TEST_STAT=$(cat status.tmp)
echo "action_status=frogtests" >> $GITHUB_ENV
echo "action_details=$TEST_STAT errors" >> $GITHUB_ENV
if [ $TEST_STAT != 0 ]
then
echo "action_status=frogtests" >> $GITHUB_ENV
echo "action_details=$TEST_STAT errors" >> $GITHUB_ENV
fi
continue-on-error: true

- name: log problems
Expand Down

0 comments on commit e631565

Please sign in to comment.