Skip to content

Bump urllib3 from 2.5.0 to 2.6.0 (#315) #844

Bump urllib3 from 2.5.0 to 2.6.0 (#315)

Bump urllib3 from 2.5.0 to 2.6.0 (#315) #844

Workflow file for this run

name: Test
on: [push, pull_request, workflow_dispatch]
permissions: {}
env:
FORCE_COLOR: 1
jobs:
tests:
name: "Tests"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: dev-requirements.txt
- run: |
python -m pip install tox
- run: |
tox -e py
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_ORG_TOKEN }}