Skip to content

Bump pypdf from 5.6.1 to 6.4.0 #39

Bump pypdf from 5.6.1 to 6.4.0

Bump pypdf from 5.6.1 to 6.4.0 #39

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
python -m pytest tests/ -v --tb=short
env:
PYTHONPATH: .