Skip to content

Merge pull request #75 from JGCRI/redesign #277

Merge pull request #75 from JGCRI/redesign

Merge pull request #75 from JGCRI/redesign #277

Workflow file for this run

name: R-CMD
on: [push]
jobs:
R-CMD:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: '4.3.2'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
steps:
- uses: r-lib/actions/setup-pandoc@v2
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
run: |
install.packages(c("remotes", "rcmdcheck"), repos = "https://cloud.r-project.org")
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Check
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}