We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690b274 commit d553182Copy full SHA for d553182
.github/workflows/check.yml
@@ -19,7 +19,16 @@ jobs:
19
registry: ghcr.io
20
username: ${{ github.actor }}
21
password: ${{ secrets.GITHUB_TOKEN }}
22
- - name: Run jabref-action
23
- uses: ./ # use local action
+ - name: Check test/consistent.bib
+ uses: ./
24
with:
25
- bibfile: test/test.bib
+ bibfile: test/consistent.bib
26
+ - name: Check test/inconsistent.bib
27
+ continue-on-error: true
28
29
+ id: inconsistent
30
+ with:
31
+ bibfile: test/inconsistent.bib
32
+ - name: inconsistent failed?
33
+ if: steps.inconsistent.outcome == 'success'
34
+ run: exit 1
test/consistent.bib
@@ -0,0 +1,7 @@
1
+@article{one,
2
+ author = {First}
3
+}
4
+
5
+@article{two,
6
+ author = {Second},
7
test/test.bib test/inconsistent.bibtest/test.bib renamed to test/inconsistent.bib
0 commit comments