File tree Expand file tree Collapse file tree 4 files changed +107
-0
lines changed
Expand file tree Collapse file tree 4 files changed +107
-0
lines changed 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+ branches : [main, master]
8+
9+ name : R-CMD-check.yaml
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: windows-latest, r: "release" }
25+ - { os: ubuntu-latest, r: "devel", http-user-agent: "release" }
26+ - { os: ubuntu-latest, r: "release" }
27+ - { os: ubuntu-latest, r: "oldrel-1" }
28+
29+ env :
30+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
31+ R_KEEP_PKG_SOURCE : yes
32+
33+ steps :
34+ - uses : actions/checkout@v4
35+
36+ - uses : r-lib/actions/setup-pandoc@v2
37+
38+ - uses : r-lib/actions/setup-r@v2
39+ with :
40+ r-version : ${{ matrix.config.r }}
41+ http-user-agent : ${{ matrix.config.http-user-agent }}
42+ use-public-rspm : true
43+
44+ - uses : r-lib/actions/setup-r-dependencies@v2
45+ with :
46+ extra-packages : any::rcmdcheck
47+ needs : check
48+
49+ - uses : r-lib/actions/check-r-package@v2
50+ with :
51+ upload-snapshots : true
52+ build_args : ' c("--no-manual","--compact-vignettes=gs+qpdf")'
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+ release :
8+ types : [published]
9+ workflow_dispatch :
10+
11+ name : pkgdown.yaml
12+
13+ permissions : read-all
14+
15+ jobs :
16+ pkgdown :
17+ runs-on : ubuntu-latest
18+ # Only restrict concurrency for non-PR jobs
19+ concurrency :
20+ group : pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
21+ env :
22+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
23+ permissions :
24+ contents : write
25+ steps :
26+ - uses : actions/checkout@v4
27+
28+ - uses : r-lib/actions/setup-pandoc@v2
29+
30+ - uses : r-lib/actions/setup-r@v2
31+ with :
32+ use-public-rspm : true
33+
34+ - uses : r-lib/actions/setup-r-dependencies@v2
35+ with :
36+ extra-packages : any::pkgdown, local::.
37+ needs : website
38+
39+ - name : Build site
40+ run : pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
41+ shell : Rscript {0}
42+
43+ - name : Deploy to GitHub pages 🚀
44+ if : github.event_name != 'pull_request'
45+ 46+ with :
47+ clean : false
48+ branch : gh-pages
49+ folder : docs
Original file line number Diff line number Diff line change 1+ url : https://boost-R.github.io/FDboost
2+
3+ template :
4+ bootstrap : 5
5+ light-switch : true
You can’t perform that action at this time.
0 commit comments