Skip to content

Commit

Permalink
ci: also installing the deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFay committed Feb 28, 2024
1 parent a1482bf commit a2ab831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/render-rmarkdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: sudo apt-get install -y libgit2-dev
# install CRAN packages used inside README.Rmd
- name: install required packages
run: Rscript -e 'install.packages("remotes");remotes::install_cran(c("rmarkdown", "covr", "gert", "knitr", "devtools"), repos = "https://packagemanager.posit.co/cran/__linux__/jammy/latest")'
run: Rscript -e 'install.packages("remotes");remotes::install_cran(c("rmarkdown", "covr", "gert", "knitr", "devtools"), repos = "https://packagemanager.posit.co/cran/__linux__/jammy/latest");remotes::install_deps(repos = "https://packagemanager.posit.co/cran/__linux__/jammy/latest")'
# Render READEME.md using rmarkdown
- name: render README
run: Rscript -e 'rmarkdown::render("README.Rmd", output_format = "md_document")'
Expand Down

0 comments on commit a2ab831

Please sign in to comment.