Skip to content

add Documentation file #3

add Documentation file

add Documentation file #3

Workflow file for this run

name: build
on:
push:
branches:
- paper
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.4.0'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
GITHUB_PAT: ${{ secrets.PLUTUS_ACTION}}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2-branch
with:
r-version: ${{ matrix.r }}
- uses: r-lib/actions/setup-pandoc@v2-branch
- uses: r-lib/actions/setup-tinytex@v2-branch
- name: Install dependencies
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}