File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed
Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+ on :
4+ push :
5+ branches : [main, master]
6+ pull_request :
7+ branches : [main, master]
8+
9+ name : R-CMD-check
10+
11+ permissions : read-all
12+
13+ jobs :
14+ R-CMD-check :
15+ runs-on : ${{ matrix.config.os }}
16+
17+ name : ${{ matrix.config.os }} (${{ matrix.config.r }})
18+
19+ strategy :
20+ fail-fast : false
21+ matrix :
22+ config :
23+ - {os: macos-latest, r: 'release'}
24+ - {os: ubuntu-latest, r: 'release'}
25+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26+
27+ env :
28+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
29+ R_KEEP_PKG_SOURCE : yes
30+
31+ steps :
32+ - uses : actions/checkout@v4
33+
34+ - uses : r-lib/actions/setup-pandoc@v2
35+
36+ - uses : r-lib/actions/setup-r@v2
37+ with :
38+ r-version : ${{ matrix.config.r }}
39+ http-user-agent : ${{ matrix.config.http-user-agent }}
40+ use-public-rspm : true
41+
42+ - uses : r-lib/actions/setup-r-dependencies@v2
43+ with :
44+ extra-packages : any::rcmdcheck
45+ needs : check
46+
47+ - uses : r-lib/actions/check-r-package@v2
48+ with :
49+ upload-snapshots : true
50+ build_args : ' c("--no-manual","--compact-vignettes=gs+qpdf")'
You can’t perform that action at this time.
0 commit comments