We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to add a check to test/test.sh to check that a crossref has the correct type?
test/test.sh
That is:
@InProceedings{test1, title ="X", crossref="test2" } @Book{test2, title ="X", }
should fail. Same for @InCollection => @Book.
@InCollection => @Book
The text was updated successfully, but these errors were encountered:
The repository is clean and the test run on pre-commit but it does not run when testing because it would require installing R and rbibutils.
Sorry, something went wrong.
We could do this:
- uses: r-lib/actions/setup-r@v2 - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: cran::rbibutils - run: Rscript ./scripts/bibcheck.R
but we want it to trigger only when crossref.bib or biblio.bib change.
crossref.bib
biblio.bib
No branches or pull requests
How to add a check to
test/test.sh
to check that a crossref has the correct type?That is:
should fail. Same for
@InCollection => @Book
.The text was updated successfully, but these errors were encountered: