-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:lmu-osc/tutorial-template
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# Tutorial Template | ||
|
||
This repo serves as the template/basis for our Quarto tutorials. | ||
This repo serves as the template/basis for our Quarto tutorials. | ||
|
||
## Check `CITATION.cff` Format | ||
|
||
Repo templates come with a GitHub Action that will check that the `CITATION.cff` file is correctly formatted every time the file is pushed to GitHub (and it will check on any branch to which it is pushed.) | ||
|
||
You can also run this check locally with the code below which 1) installs the `cffconvert` checker package, and runs the check (inside of a Docker container). You may need to install Docker and Python 3 if they are not already on your computer. | ||
|
||
|
||
```{bash} | ||
python3 -m pip install --user cffconvert | ||
docker run --rm -v "${PWD}:/app" citationcff/cffconvert --validate | ||
``` |