Skip to content

chore(deps): bump pypdf from 6.2.0 to 6.5.0 #111

chore(deps): bump pypdf from 6.2.0 to 6.5.0

chore(deps): bump pypdf from 6.2.0 to 6.5.0 #111

Workflow file for this run

name: tests
on:
pull_request:
branches:
- "main*"
workflow_call:
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv and sync dev dependencies
run: |
pip install uv
uv venv
echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv sync --dev
- name: Run tests with pytest and collect coverage
run:
pytest --cov=pdfbaker --cov-report=xml --junitxml=junit.xml -o
junit_family=legacy
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}