Skip to content

Bump urllib3 from 2.5.0 to 2.6.3 #36

Bump urllib3 from 2.5.0 to 2.6.3

Bump urllib3 from 2.5.0 to 2.6.3 #36

Workflow file for this run

# Generated by preen — do not edit manually
# Regenerate with: preen sync
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- run: uv sync
- run: uv run pytest
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv sync
- run: uv run ruff check
- run: uv run ruff format --check