Skip to content

Update event_analysis.R #11

Update event_analysis.R

Update event_analysis.R #11

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: [devel]
pull_request:
branches: [devel, devtools_check]
name: lint
jobs:
lint:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
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: |
options(crayon.enabled = TRUE)
library(lintr)
lint_package(linters = linters_with_defaults(
line_length_linter(100),
object_length_linter(50L),
cyclocomp_linter(100L),
indentation_linter = NULL,
object_usage_linter = NULL,
object_name_linter = NULL
))
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true