File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments