Skip to content

Ruff precommit v2

Ruff precommit v2 #87

Workflow file for this run

name: Lint
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install "ruff>=0.5.0"
- run: ruff check src/
- run: ruff format --check src/