Skip to content

Merge pull request #20 from SamEdwardes/feature/page-range #42

Merge pull request #20 from SamEdwardes/feature/page-range

Merge pull request #20 from SamEdwardes/feature/page-range #42

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.8", "3.9", "3.10", "3.11"]
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 poetry
run: |
python -m pip install --upgrade pip wheel setuptools
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --all-extras
- name: Test with pytest
run: |
poetry run pytest