Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-bcl committed Nov 8, 2024
1 parent cb4ebe0 commit 6d47c9c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ jobs:
if: always()
steps:
- name: Check build matrix status
run: echo "${{ needs.build.result }}" && exit "$RESULT"
env:
RESULT: ${{ needs.build.result == 'success' && 0 || 1 }}
run: if [ "${{ needs.build.result }}" = "success" ]; then exit 0; else exit 1; fi

analyse:
name: Analyse
Expand Down

0 comments on commit 6d47c9c

Please sign in to comment.