Thanks to visit codestin.com
Credit goes to github.com

Skip to content

mypy errors

mypy errors #78

name: Smoke Test(s) Against Multiple Python Versions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements-full.txt ]; then pip install -r requirements-full.txt; fi
- name: Test with pytest
run: |
pytest tests/pdf_tests/layout_element_tests/test_smoke.py