Skip to content

fix(verifier): share inter-block boundary line between top and bottom partitions #70

fix(verifier): share inter-block boundary line between top and bottom partitions

fix(verifier): share inter-block boundary line between top and bottom partitions #70

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "*.md"
- "docs/**"
- "LICENSE"
- ".gitignore"
pull_request:
branches: [main]
paths-ignore:
- "*.md"
- "docs/**"
- "LICENSE"
- ".gitignore"
jobs:
lint:
name: Lint and format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- run: pip install -e ".[dev]"
- run: ruff check .
- run: ruff format --check .
typecheck:
name: Type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- run: pip install -e ".[dev]"
- run: mypy core cli.py
test:
name: Unit and integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install poppler (provides pdftoppm)
run: sudo apt-get update && sudo apt-get install -y poppler-utils
- run: pip install -e ".[dev]"
- run: pytest --cov=core --cov-report=term-missing