Skip to content

Commit

Permalink
Merge branch 'main' of github.com:lmu-osc/tutorial-template
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuroShepherd committed Nov 29, 2024
2 parents c7417cd + 08f69e3 commit 496db77
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
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
```

0 comments on commit 496db77

Please sign in to comment.