Skip to content

Commit

Permalink
throw everything but the kitchen sink
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed May 4, 2024
1 parent 8d7eac8 commit d773e4f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ jobs:
#- {os: macOS-latest, r: 'oldrel-2'}
#- {os: macOS-latest, r: 'oldrel-3'}

# TODO: turn on windows-devel when stringi#508 is fixed
#- { os: windows-latest, r: "next" }
- { os: windows-latest, r: "devel" }
#- { os: windows-latest, r: "devel" }
- { os: windows-latest, r: "release" }
- { os: windows-latest, r: "oldrel" }
#- {os: windows-latest, r: 'oldrel-2'}
Expand Down Expand Up @@ -61,24 +62,23 @@ jobs:
r-version: ${{ matrix.config.r }}
use-public-rspm: true

- name: Install packages from source
run: |
install.packages("Matrix", type = "source")
install.packages("lme4", type = "source")
install.packages("TMB", type = "source")
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
upgrade: 'TRUE'
cache-version: 99
extra-packages: |
any::rcmdcheck
Matrix=?ignore-before-r=100.0.0
lme4=?ignore-before-r=100.0.0
TMB=?ignore-before-r=100.0.0
needs: check

- name: Install packages from source
run: |
utils::install.packages(c("Matrix", "lme4", "TMB"), type = "source")
shell: Rscript {0}

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
Expand Down

0 comments on commit d773e4f

Please sign in to comment.