Skip to content

Commit 7f159cd

Browse files
committed
try loading utils library after installation
to test if its properly installed
1 parent b1b62bb commit 7f159cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- uses: r-lib/actions/setup-r@v2
3333
- run: Rscript -e 'install.packages("pak", repos = sprintf("https://r-lib.github.io/p/pak/stable/%s/%s/%s", .Platform$pkgType, R.Version()$os, R.Version()$arch))'
34-
- run: Rscript -e 'pak::pkg_install(c("any::utils","any::grDevices","any::graphics","any::stats","any::methods"), upgrade = FALSE)'
34+
- run: Rscript -e 'library(utils)'
35+
#- run: Rscript -e 'pak::pkg_install(c("any::utils","any::grDevices","any::graphics","any::stats","any::methods"), upgrade = FALSE)'
36+
#- run: Rscript -e 'install.packages(c("utils","grDevices","graphics","stats","methods"), .Platform$pkgType, R.Version()$os, R.Version()$arch))'
3537
- run: Rscript -e 'pak::pkg_install(c("any::ggplot2","any::RcppArmadillo","any::dtwclust"), upgrade = FALSE)'
3638
- run: R_HOME=$(R RHOME)
3739
- run: echo $R_HOME

0 commit comments

Comments
 (0)