Skip to content

Add ruff workflow and enforce stricter linting rules #2

Add ruff workflow and enforce stricter linting rules

Add ruff workflow and enforce stricter linting rules #2

Workflow file for this run

name: Lint and format
on:
push:
branches: [ master ]
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: "check"
- uses: astral-sh/ruff-action@v3
with:
args: "format --check"