Skip to content

Merge pull request #73 from normcontrol/master #48

Merge pull request #73 from normcontrol/master

Merge pull request #73 from normcontrol/master #48

Workflow file for this run

name: Run tests
on:
push: [branches, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test docx
run: pytest tests/docx/test*
- name: Test pdf
run: pytest tests/pdf/Test*
- name: Codecov
uses: codecov/[email protected]