We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c5ea1 commit 978da0dCopy full SHA for 978da0d
1 file changed
.github/workflows/basic_checks.yaml
@@ -24,7 +24,7 @@ jobs:
24
BiocManager::install(ask=FALSE)
25
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
26
shell: Rscript {0}
27
-
+
28
- name: Cache R packages
29
if: runner.os != 'Windows'
30
uses: actions/cache@v4
@@ -46,6 +46,11 @@ jobs:
46
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check")
47
48
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
54
- name: Build pkgdown
55
run: |
56
PATH=$PATH:$HOME/bin/ Rscript -e 'pkgdown::build_site(".")'
0 commit comments