Skip to content

Bump ruff (#77)

Bump ruff (#77) #132

Workflow file for this run

name: Format, Lint, and Test
on:
workflow_call:
push:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.14"
- "3.13"
- "3.12"
steps:
- uses: actions/checkout@v6
- name: Install uv and setup Python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: make install
- name: Format and lint
run: make lint
- name: Run tests
run: make test