Skip to content

chore: pin Air formatter version #3

chore: pin Air formatter version

chore: pin Air formatter version #3

Workflow file for this run

name: lint
on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6.0.3
- name: Set up Air
uses: posit-dev/setup-air@v1
with:
version: "0.11.0"
- name: Check formatting
run: air format . --check
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::lintr, local::.
needs: lint
- name: Lint
run: lintr::lint_package()
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true