Adding BiocManager to CI
Explicitly installing Bioc dependency. This inelegance should be fixed ASAP.
This commit is contained in:
parent
2b70817317
commit
e7bf9f7b85
1 changed files with 2 additions and 1 deletions
3
.github/workflows/r.yml
vendored
3
.github/workflows/r.yml
vendored
|
|
@ -78,8 +78,9 @@ jobs:
|
|||
# Installing package dependencies ------------------------ #
|
||||
- name: Installing package dependencies
|
||||
run: |
|
||||
remotes::install_cran(c("rcmdcheck", "BiocManager"))
|
||||
BiocManager::install("Rsamtools")
|
||||
remotes::install_deps(dependencies = TRUE)
|
||||
remotes::install_cran("rcmdcheck")
|
||||
shell: Rscript {0}
|
||||
|
||||
# Checking package --------------------------------------- #
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue