Bump urllib3 from 2.6.3 to 2.7.0 #2
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: Test Docker build on PR | |
| on: | |
| pull_request: | |
| # Source files (batchee/**) are intentionally excluded here; | |
| # unit tests in test-on-pr.yml are expected to catch source-level failures. | |
| # This workflow targets build-infrastructure changes only. | |
| paths: | |
| - 'Dockerfile' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| docker: | |
| uses: ./.github/workflows/reusable-docker.yml |