Skip to content

README update

README update #2

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -e ".[dev]"
- name: Lint
run: python -m ruff check .
- name: Test
run: python -m pytest -q
- name: Build
run: python -m build