Skip to content

Commit

Permalink
configure multiple machines on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fangzhou-xie committed Oct 17, 2024
1 parent bebf82b commit 1ef24a2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ name: R-CMD-check

jobs:
R-CMD-check:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
Expand Down

0 comments on commit 1ef24a2

Please sign in to comment.