Skip to content

Commit fd1fdd5

Browse files
committed
update installation sequence
1 parent a10ec51 commit fd1fdd5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pr_check.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,14 @@ jobs:
4747

4848
- name: Query dependencies
4949
run: |
50-
BiocManager::install(c("covr", "BiocCheck", "waldronlab/HistoImagePlot", "waldronlab/imageTCGAutils"))
50+
BiocManager::install(c("covr", "BiocCheck", "waldronlab/imageTCGAutils"))
5151
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
5252
shell: Rscript {0}
5353

54+
- name: Install R Package
55+
run: |
56+
remotes::install_local(repos = BiocManager::repositories())
57+
5458
- name: Cache R packages
5559
uses: actions/cache@v4
5660
with:
@@ -64,8 +68,8 @@ jobs:
6468

6569
- name: Install Dependencies
6670
run: |
71+
BiocManager::install("waldronlab/HistoImagePlot", ask = FALSE, update = TRUE)
6772
remotes::install_deps(dependencies = TRUE, repos = BiocManager::repositories())
68-
BiocManager::install(ask = FALSE, update = TRUE)
6973
shell: Rscript {0}
7074

7175
- name: Check Package

0 commit comments

Comments
 (0)