Introduce pdf.ocr.correct
.
#16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" # caching pip dependencies | |
- name: Check out Prodigy | |
uses: actions/checkout@v3 | |
with: | |
repository: explosion/prodigy | |
ref: v1.14.0 | |
path: ./prodigy | |
ssh-key: ${{ secrets.GHA_PRODIGY_READ }} | |
- name: Install prodigy | |
run: | | |
ls -la | |
pip install ./prodigy | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -e . | |
pip install ruff pytest | |
- name: Run ruff | |
if: always() | |
shell: bash | |
run: python -m ruff prodigy_pdf tests | |
- name: Run pytest | |
if: always() | |
shell: bash | |
run: python -m pytest tests |