Skip to content

Remove unused.

Remove unused. #32

Workflow file for this run

name: Run tests with uv
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Lint with black and ruff
run: uv run ruff check .
- name: Test with pytest
run: uv run pytest