Skip to content

Merge pull request #69 from openpharma/dev #122

Merge pull request #69 from openpharma/dev

Merge pull request #69 from openpharma/dev #122

Workflow file for this run

# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches:
- master
pull_request:
branches:
- master
name: R-CMD-check
jobs:
R-CMD-check:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
install.packages(c("remotes", "rcmdcheck", "downlit"))
remotes::install_deps(dependencies = TRUE, upgrade = "never")
devtools::install()
shell: Rscript {0}
- name: Check
run: |
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "note")
simaerep:::lint_package()
shell: Rscript {0}