Skip to content

Add code for training and running inference with huggingface predictors #15

Add code for training and running inference with huggingface predictors

Add code for training and running inference with huggingface predictors #15

Workflow file for this run

name: Papermage CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.8"]
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Test with Python ${{ matrix.python-version }}
run: |
sudo apt-get update
sudo apt-get -y install poppler-utils
pip install -e .[dev,predictors]
pytest --cov-fail-under=42 --log-disable=pdfminer.psparser --log-disable=pdfminer.pdfinterp --log-disable=pdfminer.cmapdb --log-disable=pdfminer.pdfdocument --log-disable=pdfminer.pdffont --log-disable=pdfminer.pdfparser --log-disable=pdfminer.converter --log-disable=pdfminer.converter --log-disable=pdfminer.pdfpage