Skip to content

fix unchecked words #91

fix unchecked words

fix unchecked words #91

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Install wkhtmltopdf
run: sudo apt-get -y install wkhtmltopdf
- name: Install package
run: pip install .[dev]
- name: Test with pytest
run: pytest -vv