Skip to content

Commit f9ef16e

Browse files
committed
Add check for chocolate.bib
1 parent d553182 commit f9ef16e

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/check.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
packages: read
1414
steps:
1515
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v4
17+
with:
18+
repository: https://github.com/JabRef/jabref-demonstration-libraries.git
19+
path: jabref-demonstration-libraries
1620
- name: Log in to GitHub Container Registry
1721
uses: docker/login-action@v3
1822
with:
@@ -29,6 +33,15 @@ jobs:
2933
id: inconsistent
3034
with:
3135
bibfile: test/inconsistent.bib
32-
- name: inconsistent failed?
36+
- name: inconsistent did not fail?
3337
if: steps.inconsistent.outcome == 'success'
3438
run: exit 1
39+
- name: Check jabref-demonstration-libraries/chocolate/Chocolate.bib
40+
continue-on-error: true
41+
uses: ./
42+
id: chocolate
43+
with:
44+
bibfile: test/inconsistent.bib
45+
- name: chocolate did not fail?
46+
if: steps.chocolate.outcome == 'success'
47+
run: exit 1

0 commit comments

Comments
 (0)