Skip to content

version bump

version bump #3

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff==0.15.0
- run: ruff check .
- run: ruff format --check .