Skip to content

v0.4.0 — honest degradation everywhere, a guided CLI, and every co-cited source read #24

v0.4.0 — honest degradation everywhere, a guided CLI, and every co-cited source read

v0.4.0 — honest degradation everywhere, a guided CLI, and every co-cited source read #24

Workflow file for this run

name: ci
on:
push: { branches: [main] }
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
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@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# [dev] only, on purpose: docling/playwright/torch stay out of CI so the
# suite keeps running without network, model downloads or a browser.
- run: pip install -e ".[dev]"
- run: ruff check src tests scripts evals
- run: pytest -q