-
-
Notifications
You must be signed in to change notification settings - Fork 136
45 lines (37 loc) · 1.3 KB
/
R-CMD-check.yaml
File metadata and controls
45 lines (37 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches:
- master
pull_request:
branches:
- master
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ${{ matrix.os }}
name: R CMD CHECK - ${{ matrix.os }} (${{ matrix.r }})
strategy:
fail-fast: false
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest, ubuntu-24.04-arm]
r: ['devel', 'release', 'oldrel']
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
TESTTHAT_CPUS: 4
steps:
- uses: n1hility/cancel-previous-runs@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
- uses: actions/checkout@main
- uses: r-lib/actions/setup-r@v2-branch
with:
r-version: ${{ matrix.r }}
- uses: r-lib/actions/setup-pandoc@v2-branch
- uses: r-lib/actions/setup-r-dependencies@v2-branch
with:
extra-packages: any::rcmdcheck any::betareg any::HSAUR3 any::biglm any::gamm4 any::V8
- uses: r-lib/actions/check-r-package@v2-branch