Skip to content

Commit

Permalink
opts
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed Jul 10, 2024
1 parent 0bb0950 commit 02151ce
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# - {os: ubuntu-latest, r: 'oldrel'}
# - {os: ubuntu-latest, r: '4.1'}
# - {os: ubuntu-latest, r: '4.0'}
- {os: ubuntu-latest, r: '3.6', args: ', "--no-vignettes"', build_args: ', "--no-build-vignettes"'}
- {os: ubuntu-latest, r: '3.6'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -58,9 +58,13 @@ jobs:
extra-packages: any::rcmdcheck, knitr=?ignore-before-r=4.0.0, rmarkdown=?ignore-before-r=4.0.0
needs: check

- name: Try R3.6 dependencies
if: matrix.config.r == '3.6'
run: |
install.packages("https://cran.r-project.org/src/contrib/evaluate_0.24.0.tar.gz", repos = NULL, type = "source")
install.packages(c("knitr", "rmarkdown"), repos = "https://cloud.r-project.org")
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
check-dir: '"check"'
args: 'c("--as-cran","--no-manual" ${{ matrix.config.args }})'
build_args: 'c("--no-manual" ${{ matrix.config.build_args }})'

0 comments on commit 02151ce

Please sign in to comment.