Skip to content

Commit 98626c1

Browse files
cjfieldsclaude
andcommitted
Fix CI: use r-version release/devel instead of bioc-release/bioc-devel
r-lib/actions/setup-r does not support bioc-release or bioc-devel as version strings. Use release and devel instead; BiocManager automatically selects the matching Bioconductor version for the installed R. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c417bed commit 98626c1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/R-CMD-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
R-CMD-check:
1515
runs-on: ${{ matrix.os }}
1616

17-
name: Check (${{ matrix.os }}, ${{ matrix.r-version }})
17+
name: Check (${{ matrix.os }}, R ${{ matrix.r-version }})
1818

1919
strategy:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, macos-latest]
23-
r-version: [bioc-release]
23+
r-version: [release]
2424
include:
2525
- os: ubuntu-latest
26-
r-version: bioc-devel
26+
r-version: devel
2727

2828
steps:
2929
- uses: actions/checkout@v4
@@ -72,6 +72,6 @@ jobs:
7272
if: failure()
7373
uses: actions/upload-artifact@v4
7474
with:
75-
name: check-results-${{ matrix.os }}-${{ matrix.r-version }}
75+
name: check-results-${{ matrix.os }}-r${{ matrix.r-version }}
7676
path: check
7777
retention-days: 7

0 commit comments

Comments
 (0)