Skip to content

Add CI/CD pipeline. #24

Add CI/CD pipeline.

Add CI/CD pipeline. #24

Workflow file for this run

name: 🕵 Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4.1.4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install R dependencies
run: install.packages("lintr")
shell: Rscript {0}
- name: Lint
run: lintr::lint_package()
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true