Skip to content

Upkeep 2024 (#135)

Upkeep 2024 (#135) #27

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, master]
pull_request:
branches: [main, master]
name: lint
jobs:
lint:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
r-lib/lintr
local::.
needs: lint
# TODO: Revisit to remove some of these allowances after more important lints
# have been removed.
- name: Lint
run: |
library(lintr)
lint_package(linters = linters_with_defaults(
commented_code_linter = NULL,
cyclocomp_linter = cyclocomp_linter(25),
implicit_integer_linter = NULL,
line_length_linter(120),
object_name_linter = NULL,
object_length_linter(50),
object_usage_linter = NULL,
todo_comment_linter = NULL,
extraction_operator_linter = NULL,
defaults = linters_with_tags(tags = NULL)
))
shell: Rscript {0}