From b7b8760d30c969d19e1b83e8477fbe1ba277ac16 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Thu, 4 Jun 2026 16:54:46 -0500 Subject: [PATCH] Switch install_deps to install_all --- .github/workflows/ci.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9581c4f..99d1d24 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,13 +61,8 @@ jobs: - name: Setup r-ci uses: eddelbuettel/github-actions/r-ci@master - - name: Install dependencies - run: ./run.sh install_deps - - # simplermarkdown builds the vignette during R CMD build; it is a - # Suggests, which install_deps may skip. - - name: Install vignette builder - run: Rscript -e 'if (!requireNamespace("simplermarkdown", quietly = TRUE)) install.packages("simplermarkdown")' + - name: Install all dependencies (including Suggests) + run: ./run.sh install_all # Build and check explicitly rather than ./run.sh run_tests: r-ci's # run_tests passes --no-build-vignettes, which leaves inst/doc empty