Skip to content

Commit

Permalink
GHA: matrix config values must be quoted!
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Nov 7, 2024
1 parent 323bcbf commit 97cceac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# - {os: macOS-latest, r: 'release' }
# - {os: macOS-latest, r: 'oldrel' }
- {os: ubuntu-latest, r: 'devel' }
- {os: ubuntu-latest, r: 'devel' , req_suggests: false, label: '!req_suggests' }
- {os: ubuntu-latest, r: 'devel' , suggests_only: 'false', label: '!req_suggests' }
- {os: ubuntu-latest, r: 'release' }
- {os: ubuntu-latest, r: 'oldrel' }
- {os: ubuntu-latest, r: 'oldrel-1' }
Expand All @@ -39,7 +39,7 @@ jobs:
## Test in other locale (optional)
LANGUAGE: ${{ matrix.config.language }}
## R CMD check
_R_CHECK_SUGGESTS_ONLY_: ${{ !!contains(matrix.config.req_suggests, false) }}
_R_CHECK_SUGGESTS_ONLY_: ${{ matrix.config.suggests_only || 'true' }}
_R_CHECK_CRAN_INCOMING_: false
_R_CHECK_MATRIX_DATA_: true
_R_CHECK_THINGS_IN_TEMP_DIR_: true
Expand Down

0 comments on commit 97cceac

Please sign in to comment.