File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 22^LICENSE\.md$
33^explorecourses\.Rproj$
44^data-raw$
5+ ^\.github$
6+ ^README\.Rmd$
Original file line number Diff line number Diff line change 1+ * .html
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+
8+ name : R-CMD-check.yaml
9+
10+ permissions : read-all
11+
12+ jobs :
13+ R-CMD-check :
14+ runs-on : ubuntu-latest
15+ env :
16+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
17+ R_KEEP_PKG_SOURCE : yes
18+ steps :
19+ - uses : actions/checkout@v4
20+
21+ - uses : r-lib/actions/setup-r@v2
22+ with :
23+ use-public-rspm : true
24+
25+ - uses : r-lib/actions/setup-r-dependencies@v2
26+ with :
27+ extra-packages : any::rcmdcheck
28+ needs : check
29+
30+ - uses : r-lib/actions/check-r-package@v2
31+ with :
32+ upload-snapshots : true
33+ build_args : ' c("--no-manual","--compact-vignettes=gs+qpdf")'
You can’t perform that action at this time.
0 commit comments