Skip to content

Merge pull request #270 from VikParuchuri/dev #9

Merge pull request #270 from VikParuchuri/dev

Merge pull request #270 from VikParuchuri/dev #9

Workflow file for this run

name: Integration test
on: [push]
env:
TORCH_DEVICE: "cpu"
jobs:
build:
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 apt dependencies
run: |
sudo apt-get update
sudo apt-get install -y tesseract-ocr tesseract-ocr-eng
- name: Install python dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: poetry run pytest