File tree Expand file tree Collapse file tree 2 files changed +51
-0
lines changed
Expand file tree Collapse file tree 2 files changed +51
-0
lines changed Original file line number Diff line number Diff line change 2222^revdep$
2323^CRAN-SUBMISSION$
2424^CITATION.cff
25+ ^\.github$
Original file line number Diff line number Diff line change 1+ # Workflow derived from https://github.com/r-lib/actions/tree/master/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 : [dev, main, master]
6+ pull_request :
7+ branches : [dev, main, master]
8+
9+ name : R-CMD-check
10+
11+ jobs :
12+ R-CMD-check :
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: windows-latest, r: 'release'}
23+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24+ - {os: ubuntu-latest, r: 'release'}
25+ - {os: ubuntu-latest, r: 'oldrel-1'}
26+
27+ env :
28+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
29+ R_KEEP_PKG_SOURCE : yes
30+ RSPM : ${{ matrix.config.rspm }}
31+
32+ steps :
33+ - uses : actions/checkout@v2
34+
35+ - uses : r-lib/actions/setup-pandoc@v2
36+
37+ - name : Double check repos
38+ run : |
39+ print(getOption("repos"))
40+ shell : Rscript {0}
41+
42+ - uses : r-lib/actions/setup-r-dependencies@v2
43+ with :
44+ dependencies : ' "all"'
45+ extra-packages : |
46+ rcmdcheck
47+
48+ - uses : r-lib/actions/check-r-package@v2
49+ with :
50+ upload-snapshots : true
You can’t perform that action at this time.
0 commit comments