Skip to content

Commit 35b66ca

Browse files
committed
add mac and windows to github actions
1 parent 7988986 commit 35b66ca

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,17 @@ name: R-CMD-check
1010

1111
jobs:
1212
R-CMD-check:
13-
runs-on: ubuntu-latest
13+
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'}
1424
env:
1525
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1626
R_KEEP_PKG_SOURCE: yes

0 commit comments

Comments
 (0)