We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381d9bd commit 5beed01Copy full SHA for 5beed01
.github/workflows/R-CMD-check.yaml
@@ -58,7 +58,21 @@ jobs:
58
http-user-agent: ${{ matrix.config.http-user-agent }}
59
use-public-rspm: true
60
61
+ # TODO: remove this when R 4.6 is released
62
+ - name: Tweak for old Windows (R 4.1)
63
+ uses: r-lib/actions/setup-r-dependencies@v2
64
+ if: ${{ matrix.config.os == 'windows-latest' && matrix.config.r == 'oldrel-4' }}
65
+ with:
66
+ cache-version: 3
67
+ extra-packages: >
68
+ any::rcmdcheck,
69
+ [email protected],
70
+ Hmisc=?ignore-before-r=4.2.0,
71
+ quantreg=?ignore-before-r=4.3.0
72
+ needs: check
73
+
74
- uses: r-lib/actions/setup-r-dependencies@v2
75
+ if: ${{ matrix.config.os != 'windows-latest' || matrix.config.r != 'oldrel-4' }}
76
with:
77
cache-version: 3
78
extra-packages: >
0 commit comments