Skip to content

dated snapshot of repos in renv.lock, and action setup-r infers R version #25

dated snapshot of repos in renv.lock, and action setup-r infers R version

dated snapshot of repos in renv.lock, and action setup-r infers R version #25

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main]
pull_request:
name: R-CMD-check.yaml
permissions: read-all
jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v5
- uses: r-lib/actions/setup-r@v2
with:
r-version: 'renv'
- uses: r-lib/actions/setup-renv@v2
with:
profile: '"ci"'
- uses: r-lib/actions/check-r-package@v2
with:
args: 'c("--no-manual", "--no-vignettes", "--no-examples", "--no-build-vignettes", "--ignore-vignettes")'
build_args: 'c("--no-manual", "--no-build-vignettes")'
error-on: '"error"'
upload-snapshots: true