Skip to content

Bump openai from 1.102.0 to 2.5.0 #125

Bump openai from 1.102.0 to 2.5.0

Bump openai from 1.102.0 to 2.5.0 #125

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