Skip to content

perf: speed up area preservation with Newton/Steiner buffer search #20

perf: speed up area preservation with Newton/Steiner buffer search

perf: speed up area preservation with Newton/Steiner buffer search #20

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # full history so setuptools-scm can read tags
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v8.0.0
with:
cache-suffix: ${{ matrix.python-version }}
- run: uv sync --all-extras --dev
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy smoothify/
- name: Test
run: uv run pytest tests/ -x -q
- name: Notebook smoke test
if: matrix.python-version == '3.11'
run: uv run pytest --nbmake examples/*.ipynb -q