Skip to content

Commit 084b28c

Browse files
committed
remove r-devel exceptions from build yaml
1 parent ce63824 commit 084b28c

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
config:
27-
# - {os: macos-latest, r: 'release'}
27+
- {os: macos-latest, r: 'release'}
2828

29-
# - {os: windows-latest, r: 'release'}
29+
- {os: windows-latest, r: 'release'}
3030
# use 4.0 or 4.1 to check with rtools40's older compiler
31-
# - {os: windows-latest, r: 'oldrel-4'}
31+
- {os: windows-latest, r: 'oldrel-4'}
3232

3333
- {os: ubuntu-latest, r: 'devel'}
34-
# - {os: ubuntu-latest, r: 'release'}
34+
- {os: ubuntu-latest, r: 'release'}
3535
env:
3636
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
3737
R_KEEP_PKG_SOURCE: yes
@@ -53,23 +53,13 @@ jobs:
5353
http-user-agent: ${{ matrix.config.http-user-agent }}
5454
use-public-rspm: true
5555

56-
- name: use bioc devel for r-devel
57-
if: matrix.config.r == 'devel'
58-
run: |
59-
Rscript -e 'install.packages("BiocManager", repos = "https://cran.r-project.org")'
60-
Rscript -e 'cat("options(repos = BiocManager::repositories(version = \"devel\"))\n", file = ".Rprofile", append = TRUE)'
61-
Rscript -e 'BiocManager::version(); print(BiocManager::repositories())'
62-
Rscript -e 'BiocManager::install("IRanges", ask=FALSE, update=FALSE)'
63-
6456
- uses: r-lib/actions/setup-r-dependencies@v2
6557
with:
6658
cache-version: 3
6759
extra-packages: |
6860
any::rcmdcheck
6961
any::Hmisc
7062
any::quantreg
71-
any::BiocManager
72-
bioc::IRanges
7363
needs: check
7464

7565
- uses: r-lib/actions/check-r-package@v2

0 commit comments

Comments
 (0)