We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8432207 commit b5b6054Copy full SHA for b5b6054
1 file changed
.github/workflows/check.yml
@@ -24,9 +24,11 @@ jobs:
24
with:
25
bibfile: test/consistent.bib
26
- name: Check test/inconsistent.bib
27
- # inconsistent.bib will trigger a failure, but the overall action should pass
28
- # We include this step for manual inspection
29
continue-on-error: true
30
uses: ./
+ id: inconsistent
31
32
bibfile: test/inconsistent.bib
+ - name: inconsistent failed?
33
+ if: steps.inconsistent.outcome == 'success'
34
+ run: exit 1
0 commit comments