Bump urllib3 from 2.5.0 to 2.6.3 #106
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: Python Unit Tests with uv | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| uv-run-pytest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| container: | |
| image: osgeo/gdal:ubuntu-small-3.6.3 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install build tools | |
| run: | | |
| apt-get update | |
| apt-get install -y \ | |
| python3 python3-pip python3-venv \ | |
| build-essential \ | |
| libgeos-dev \ | |
| libproj-dev | |
| - name: Install uv | |
| run: pip3 install uv | |
| - name: Sync environment with uv | |
| run: uv sync --group dev | |
| - name: Run tests with pytest | |
| run: uv run pytest |