Fix missing deps and roxygen2 version in deploy workflow
Some checks failed
Deploy Lakehouse Docs / build-and-deploy (push) Failing after 1m3s
Lint & Format Check / Link Check (push) Successful in 4s
Lint & Format Check / Format Check (styler) (push) Successful in 16s
R Package Tests / test (push) Successful in 57s

Add tidymodels and here to DESCRIPTION Suggests so remotes::install_deps
picks them up in CI. Explicitly install roxygen2 in deploy.yaml to ensure
version >= 7.3.3 is available, matching the RoxygenNote declared in DESCRIPTION.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-22 20:32:31 -05:00
parent def3e3b478
commit 0cd1242502
2 changed files with 3 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ jobs:
# First install 'renv' or 'remotes', then install project dependencies # First install 'renv' or 'remotes', then install project dependencies
# Using remotes here as it's typically faster for CI if renv cache isn't available # Using remotes here as it's typically faster for CI if renv cache isn't available
run: | run: |
Rscript -e "install.packages(c('remotes', 'styler'))" Rscript -e "install.packages(c('remotes', 'styler', 'roxygen2'))"
Rscript -e "remotes::install_deps(dependencies = TRUE)" Rscript -e "remotes::install_deps(dependencies = TRUE)"
- name: Run Build Script - name: Run Build Script

View File

@@ -43,8 +43,10 @@ Imports:
yardstick yardstick
Suggests: Suggests:
duckdb, duckdb,
here,
targets, targets,
tarchetypes, tarchetypes,
tidymodels,
knitr, knitr,
spelling, spelling,
testthat (>= 3.0.0), testthat (>= 3.0.0),