Merge changes for issue 781 (Reactivity) (#784) #593
This file contains 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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master] | |
paths: | |
- '.github/**' | |
- 'lang/R/**' | |
pull_request: | |
branches: [main, master] | |
paths: | |
- '.github/**' | |
- 'lang/R/**' | |
name: R package | |
defaults: | |
run: | |
working-directory: lang/R | |
jobs: | |
R-CMD-check: | |
runs-on: ubuntu-latest | |
container: | |
image: rocker/verse:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check test data matches the global test data files | |
run: diff -rc tests/data-tests ../../tests/data | |
shell: bash | |
- name: Install dependencies | |
run: | | |
install.packages(c("remotes", "testthat", "roxygen2", "devtools", "rcmdcheck")) | |
remotes::install_deps(dependencies=TRUE, upgrade="never") | |
tinytex::tlmgr_install("amsmath") | |
shell: Rscript {0} | |
- name: Document | |
run: | | |
devtools::document() | |
shell: Rscript {0} | |
- name: Check | |
env: | |
_R_CHECK_CRAN_INCOMING_: false | |
run: | | |
options(crayon.enabled=TRUE) | |
rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran", "--run-donttest"), error_on="warning", check_dir="check") | |
shell: Rscript {0} | |
- name: Show testthat output | |
if: always() | |
run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true | |
shell: bash |