handle all remaining edge cases for listitems and refactor code to be… #183
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: CI tests | |
on: [push] | |
env: | |
TORCH_DEVICE: "cpu" | |
OCR_ENGINE: "surya" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install python dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Run tests | |
env: | |
HF_TOKEN: ${{ secrets.HF_TOKEN }} | |
run: poetry run pytest |