Skip to content

Commit

Permalink
Add R 3.6 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
glin committed Aug 3, 2024
1 parent c69508b commit 262df8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ on:
description: |
Comma-separated list of R versions. Specify "last-N" to use the
last N minor R versions, or "all" to use all minor R versions since R 3.1.
Defaults to "last-5,devel".
Defaults to "last-5,3.6.3,devel".
required: false
default: 'last-5,devel'
default: 'last-5,3.6.3,devel'
type: string

permissions:
Expand Down
5 changes: 3 additions & 2 deletions test/get_r_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ def main():
'versions',
type=str,
nargs='?',
default='last-5,devel',
# R 3.6 is a special case, as we need longer term (but unstated) support for it.
default='last-5,3.6.3,devel',
help="""Comma-separated list of R versions. Specify "last-N" to use the
last N minor R versions, or "all" to use all minor R versions since R 3.1.
Defaults to "last-5,devel".
Defaults to "last-5,3.6.3,devel".
"""
)
args = parser.parse_args()
Expand Down

0 comments on commit 262df8b

Please sign in to comment.