We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5497a10 commit 4157233Copy full SHA for 4157233
.github/workflows/R-CMD-check.yaml
@@ -34,12 +34,21 @@ jobs:
34
35
- uses: r-lib/actions/setup-pandoc@v2
36
37
- - uses: r-lib/actions/setup-r@v2
+ - name: Setup recent R
38
+ uses: r-lib/actions/setup-r@v2
39
+ if: ${{ matrix.config.r != '4.0.4' }}
40
with:
41
r-version: ${{ matrix.config.r }}
42
http-user-agent: ${{ matrix.config.http-user-agent }}
43
use-public-rspm: true
44
45
+ - name: Setup R 4.0.4
46
47
+ if: ${{ matrix.config.r == '4.0.4' }}
48
+ with:
49
+ r-version: ${{ matrix.config.r }}
50
+ cran: 'https://packagemanager.posit.co/cran/__linux__/noble/2024-04-19'
51
+
52
- uses: r-lib/actions/setup-tinytex@v2
53
54
- uses: r-lib/actions/setup-r-dependencies@v2
0 commit comments