- Notifications
You must be signed in to change notification settings - Fork8
docs: refine wording and formatting in RWA vignette for clarity#107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| on:[push, pull_request] | |
| name:R-CMD-check | |
| jobs: | |
| R-CMD-check: | |
| runs-on:ubuntu-latest | |
| env: | |
| GITHUB_PAT:${{ secrets.GITHUB_TOKEN }} | |
| R_KEEP_PKG_SOURCE:yes | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:r-lib/actions/setup-pandoc@v2 | |
| -uses:r-lib/actions/setup-r@v2 | |
| with: | |
| r-version:'release' | |
| use-public-rspm:true | |
| -uses:r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages:any::rcmdcheck | |
| needs:check | |
| -name:Check | |
| env: | |
| _R_CHECK_FORCE_SUGGESTS_:true | |
| run:| | |
| options(crayon.enabled = TRUE) | |
| rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check") | |
| shell:Rscript {0} | |
| -name:Upload check results | |
| if:failure() | |
| uses:actions/upload-artifact@v4 | |
| with: | |
| name:r-cmdcheck-results | |
| path:check |