We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 727cb1c commit b2c9109Copy full SHA for b2c9109
.github/workflows/R-CMD-check.yaml
@@ -54,15 +54,15 @@ jobs:
54
55
- name: Setup recent R
56
uses: r-lib/actions/setup-r@v2
57
- if: ${{ matrix.config.r != '4.1.0' || matrix.config.r != '4.4.2'}}
+ if: ${{ matrix.config.r != '4.1.0' && matrix.config.r != '4.4.2'}}
58
with:
59
r-version: ${{ matrix.config.r }}
60
http-user-agent: ${{ matrix.config.http-user-agent }}
61
use-public-rspm: true
62
63
- name: Setup older R
64
65
- if: ${{ matrix.config.r == '4.1.0' || matrix.config.r != '4.4.2'}}
+ if: ${{ matrix.config.r == '4.1.0' || matrix.config.r == '4.4.2'}}
66
67
68
cran: 'https://packagemanager.posit.co/cran/__linux__/noble/2024-04-19'
0 commit comments