Skip to content

Merge pull request #22 from SamEdwardes/feature/python3.12 #49

Merge pull request #22 from SamEdwardes/feature/python3.12

Merge pull request #22 from SamEdwardes/feature/python3.12 #49

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pytest
on:
pull_request:
branches: [ main ]
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install OCR and PDF dependencies
run: |
sudo apt-get update
sudo apt-get install -y poppler-utils tesseract-ocr libtesseract-dev
- name: Setup uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Test with pytest
run: |
uv run --python ${{ matrix.python-version }} --all-extras pytest