Skip to content

Commit d417ab5

Browse files
authored
More attempts to fix workflow file
1 parent 527377f commit d417ab5

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,25 @@ jobs:
3131
with:
3232
use-public-rspm: true
3333

34-
- name: setup BiocManager to use devel installs
35-
run: |
36-
install.packages("BiocManager")
37-
BiocManager::install(version="devel", ask=FALSE)
38-
BiocManager::install("Seqinfo")
39-
shell: Rscript {0}
40-
4134
- name: setup dependencies for old state
4235
uses: r-lib/actions/setup-r-dependencies@v2
4336
with:
4437
working-directory: ./original-state
45-
extra-packages: any::covr
38+
extra-packages: any::covr, Seqinfo=?ignore
4639
needs: coverage
4740

4841
- name: setup dependencies for new state
4942
uses: r-lib/actions/setup-r-dependencies@v2
5043
with:
51-
working-directory: ./new-state
44+
working-directory: ./new-state, Seqinfo=?ignore
5245
extra-packages: any::covr
5346
needs: coverage
5447

5548
- name: Test coverage on base branch
5649
run: |
50+
## additional installations in case things aren't working
51+
BiocManager::install(version="devel", ask=FALSE)
52+
BiocManager::install("Seqinfo")
5753
dirpath <- file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
5854
dir.create(dirpath)
5955

0 commit comments

Comments
 (0)