Skip to content

Commit

Permalink
ci: add check for invalid numeric versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamblake committed Aug 23, 2023
1 parent 8d3909f commit 34dbdec
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
fail-fast: false
matrix:
config:
- {os: macOS-latest, r: "release"}
- {os: windows-latest, r: "release"}
- {os: windows-latest, r: "3.6"}
- {os: ubuntu-20.04, r: "devel", http-user-agent: "release"}
- {os: ubuntu-20.04, r: "release"}
- {os: ubuntu-20.04, r: "oldrel-1"}
- { os: macOS-latest, r: "release" }
- { os: windows-latest, r: "release" }
- { os: windows-latest, r: "3.6" }
- { os: ubuntu-20.04, r: "devel", http-user-agent: "release" }
- { os: ubuntu-20.04, r: "release" }
- { os: ubuntu-20.04, r: "oldrel-1" }

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -62,3 +62,5 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
env:
_R_CHECK_STOP_ON_INVALID_NUMERIC_VERSION_INPUTS_: true

0 comments on commit 34dbdec

Please sign in to comment.