Skip to content

Commit 133c940

Browse files
authored
Install Bioconductor for R devel configuration
Add step to install Bioconductor for R devel
1 parent 0b778bd commit 133c940

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ jobs:
5252
r-version: ${{ matrix.config.r }}
5353
http-user-agent: ${{ matrix.config.http-user-agent }}
5454
use-public-rspm: true
55+
56+
- name: use Bioconductor devel only for r-devel
57+
if: matrix.config.r == 'devel'
58+
run: |
59+
Rscript -e 'install.packages("BiocManager")'
60+
Rscript -e 'BiocManager::install(version = "devel", ask = FALSE, update = FALSE)'
5561
5662
- uses: r-lib/actions/setup-r-dependencies@v2
5763
with:

0 commit comments

Comments
 (0)