Skip to content

Commit

Permalink
use devel aqp for R 3.6 checks
Browse files Browse the repository at this point in the history
 - to catch regressions and fix check w/ current broken CRAN version
  • Loading branch information
brownag committed Sep 17, 2024
1 parent 3358633 commit f608f5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
# upgrade: 'TRUE' ## NB: required to force building of source packages
needs: check

- name: Install aqp off GitHub (devel only)
if: matrix.config.r == 'devel'
- name: Install aqp off GitHub (devel and 3.6 only)
if: matrix.config.r == 'devel' || matrix.config.r == '3.6'
run: |
remotes::install_github("ncss-tech/aqp", dependencies = TRUE, build = FALSE)
shell: Rscript {0}

- name: Install terra off r-universe (devel+Windows only)
- name: Install terra off r-universe (devel only)
if: matrix.config.r == 'devel' #|| runner.os == 'Windows'
run: install.packages('terra', repos = 'https://rspatial.r-universe.dev')
shell: Rscript {0}
Expand Down

0 comments on commit f608f5f

Please sign in to comment.