Skip to content

Bump docling from 2.47.1 to 2.57.0 #123

Bump docling from 2.47.1 to 2.57.0

Bump docling from 2.47.1 to 2.57.0 #123

Workflow file for this run

# .github/workflows/test.yml
name: Run Python tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
uv-example:
name: Run tests with uv
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocrmypdf tesseract-ocr-deu tesseract-ocr-eng
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests/test_preprocess.py --ocr-backend ocrmypdf --verbose