Skip to content

Add pre-commit and workflows for linting and formatting using ruff #3

Add pre-commit and workflows for linting and formatting using ruff

Add pre-commit and workflows for linting and formatting using ruff #3

Workflow file for this run

name: Verify formatting
on:
push:
branches: master
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
name: Verify Python formatting
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2
with:
args: "format --check"