We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7988986 commit 35b66caCopy full SHA for 35b66ca
1 file changed
.github/workflows/R-CMD-check.yaml
@@ -10,7 +10,17 @@ name: R-CMD-check
10
11
jobs:
12
R-CMD-check:
13
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.config.os }}
14
+
15
+ name: ${{ matrix.config.os }} (${{ matrix.config.r }})
16
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ config:
21
+ - {os: macOS-latest, r: 'release'}
22
+ - {os: ubuntu-latest, r: 'release'}
23
+ - {os: windows-latest, r: 'release'}
24
env:
25
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
26
R_KEEP_PKG_SOURCE: yes
0 commit comments