The template project has the following files:
-
README.md
: this file. -
data/
: a folder for data files. -
.gitignore
: a file that tells git which files to ignore. -
slides.qmd
: a presentation in quarto format. -
report.qmd
: a report in quarto format. -
.github/workflows/check-qmd-render.yaml
: The workflow that builds the html and pdf files. New dependencies can be added on the step "Install dependencies"; the following installs the R packages data.table and slurmR from CRAN:- name: Install dependencies run: | install2.r data.table slurmR
This workflow should complete without errors before you submit your project.
-
Use the qmd files to write your report and slides.
-
Add any needed files (figures, C++, data, etc.) to the repository.
-
If needed, add additional dependencies to the workflow file.
-
Ensure the report.pdf and slides.html files are generated.