Bump pypdf from 5.9.0 to 6.7.1 #617
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| python-version: "3.11" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v2 | |
| with: | |
| python-version: ${{ env.python-version }} | |
| - name: Sync dependencies | |
| run: uv sync --extra dev | |
| - name: Unit tests | |
| run: uv run poe test_unit | |
| - name: Smoke tests | |
| run: uv run poe test_smoke | |
| - name: Verify Docker build | |
| run: docker build . | |