Skip to content

Commit 9ea932c

Browse files
committed
bugfix in github action
1 parent eddcb4a commit 9ea932c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838

3939
- name: Install dependencies
4040
run: |
41-
install.packages(c("remotes", "qgraph","lucode2"),
42-
repos=c("https://cloud.r-project.org","https://rse.pik-potsdam.de/r/packages/"))
43-
remotes::install_deps(dependencies = TRUE)
41+
repos <- c("https://cloud.r-project.org","https://rse.pik-potsdam.de/r/packages/")
42+
install.packages(c("remotes","lucode2"), repos=repos)
43+
remotes::install_deps(dependencies = TRUE, repos=repos)
4444
remotes::install_cran("covr")
4545
shell: Rscript {0}
4646

0 commit comments

Comments
 (0)