Skip to content

Update httpx requirement from ~=0.27.2 to ~=0.28.0 #91

Update httpx requirement from ~=0.27.2 to ~=0.28.0

Update httpx requirement from ~=0.27.2 to ~=0.28.0 #91

Workflow file for this run

name: Lint
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
concurrency: lint-${{ github.sha }}
jobs:
lint:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: uv sync --locked --all-extras --group dev
- name: Run pre-commit hooks
uses: pre-commit/[email protected]