Skip to content

Commit

Permalink
Add R CMD check on oldest supported R version
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisaloo committed Oct 23, 2024
1 parent 36324bc commit e53758b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,17 @@ jobs:
fail-fast: false
matrix:
config:
# Test with the 3 R versions and the 3 platforms from CRAN checks
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
# Older R version we officially support according to the blueprints
# https://epiverse-trace.github.io/blueprints/dependencies.html#base-r-support-schedule
# If a specific package depends on an older version of R, this can be
# tweaked to test the oldest supported version.
- {os: ubuntu-latest, r: 'oldrel-4'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit e53758b

Please sign in to comment.