Skip to content

Commit 978da0d

Browse files
committed
Install quarto dependencies
1 parent c3c5ea1 commit 978da0d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/basic_checks.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
BiocManager::install(ask=FALSE)
2525
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
2626
shell: Rscript {0}
27-
27+
2828
- name: Cache R packages
2929
if: runner.os != 'Windows'
3030
uses: actions/cache@v4
@@ -46,6 +46,11 @@ jobs:
4646
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check")
4747
shell: Rscript {0}
4848

49+
- name: Install Quarto CLI
50+
run: |
51+
wget https://github.com/quarto-dev/quarto-cli/releases/latest/download/quarto-linux-amd64.deb
52+
sudo dpkg -i quarto-linux-amd64.deb
53+
4954
- name: Build pkgdown
5055
run: |
5156
PATH=$PATH:$HOME/bin/ Rscript -e 'pkgdown::build_site(".")'

0 commit comments

Comments
 (0)