-
Notifications
You must be signed in to change notification settings - Fork 3
82 lines (64 loc) · 2.17 KB
/
R-CMD-check.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
on:
workflow_dispatch:
push:
branches: [main, master, develop, release, auto-update-test, update-gha-workflows]
pull_request:
branches: [main, master, develop, release]
schedule:
# (see https://crontab.guru)
- cron: "5 3 * */2 WED"
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (R-${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel'}
env:
R_KEEP_PKG_SOURCE: yes
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, any::devtools, any::remotes, local::.
needs: check
- name: "Install roxygen2==7.2.3"
run: |
remotes::install_version("roxygen2", "7.2.3")
shell: Rscript {0}
- name: Install dependencies (for R-devel)
if: matrix.config.r == 'devel'
run: |
remotes::install_cran("vdiffr", type = "source", force = TRUE)
shell: Rscript {0}
- name: Install dependencies (for R-devel)
if: matrix.config.r == 'devel'
run: |
remotes::install_cran("vdiffr", type = "source", force = TRUE)
shell: Rscript {0}
- name: Install dependencies (for R-oldrel)
if: matrix.config.r == 'oldrel' || matrix.config.r == '3.6'
run: |
remotes::install_version("rgl", "0.100.50")
shell: Rscript {0}
- name: Roxygenize
run: |
devtools::document()
shell: Rscript {0}
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true