Skip to content

build_rdev_site() for release 1.10.6 #446

build_rdev_site() for release 1.10.6

build_rdev_site() for release 1.10.6 #446

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
#
# https://github.com/r-lib/actions/blob/v2/examples/lint.yaml
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: lint
jobs:
lint:
runs-on: macos-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-renv@v2
- name: Install current package
run: remotes::install_local(".", upgrade = "never")
shell: Rscript {0}
- name: Lint all files
run: lintr::lint_dir(path = ".", exclusions = list("renv", "packrat", "R/RcppExports.R"))
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true