Skip to content

build_rdev_site() for release 1.9.1 #398

build_rdev_site() for release 1.9.1

build_rdev_site() for release 1.9.1 #398

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@v3
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-renv@v2
- name: Install dependencies
run: renv::install(c("lintr", "."))
shell: Rscript {0}
- name: Lint all files
run: lintr::lint_dir(path = ".")
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true