Skip to content

Add CI, lint fixes, README with syntax tables, MIT-0 license #1

Add CI, lint fixes, README with syntax tables, MIT-0 license

Add CI, lint fixes, README with syntax tables, MIT-0 license #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv python install ${{ matrix.python-version }}
- run: uv sync --dev
- run: uv run pytest tests/ -v
- run: uv run ruff check src/ tests/
- run: uv run ruff format --check src/ tests/