Skip to content

Commit 253de86

Browse files
talsperreclaude
andauthored
fix: install remotes package for R CI test (#3037)
## Summary - `devtools` 2.5.0+ requires `remotes` to be installed separately for `install_deps()` to work - Adds `remotes` to the R test workflow install step ## Test plan - [x] R 4.4.1 CI job passes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3dbb351 commit 253de86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
python3 -m venv path/to/venv
8282
source path/to/venv/bin/activate
8383
python3 -m pip install .
84-
Rscript -e 'install.packages("devtools", repos="https://cloud.r-project.org", Ncpus=8)'
84+
Rscript -e 'install.packages(c("devtools", "remotes"), repos="https://cloud.r-project.org", Ncpus=8)'
8585
Rscript -e 'devtools::install_deps("R", dependencies=TRUE, repos="https://cloud.r-project.org", upgrade="default")'
8686
R CMD INSTALL R
8787
Rscript -e 'install.packages(c("data.table", "caret", "glmnet", "Matrix", "rjson"), repos="https://cloud.r-project.org", Ncpus=8)'

0 commit comments

Comments
 (0)