Skip to content

Commit

Permalink
don't install packages needing unavailable Matrix
Browse files Browse the repository at this point in the history
these packages require R 4.3.0+ (maybe 4.4.0 for car and quantreg). car and quantreg use MatrixModels which uses an unavailable Matrix on oldrel-2 and previous
  • Loading branch information
simonpcouch committed May 15, 2024
1 parent eef82cd commit 8cb8bde
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ jobs:

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
extra-packages:
any::rcmdcheck,
car=?ignore-before-r=4.3.0,
emmeans=?ignore-before-r=4.3.0,
lsmeans=?ignore-before-r=4.3.0,
quantreg=?ignore-before-r=4.3.0
needs: check

- uses: r-lib/actions/check-r-package@v2
Expand Down

0 comments on commit 8cb8bde

Please sign in to comment.