Skip to content

Bump httpx from 0.27.0 to 0.27.2 in /ci/latest #276

Bump httpx from 0.27.0 to 0.27.2 in /ci/latest

Bump httpx from 0.27.0 to 0.27.2 in /ci/latest #276

Workflow file for this run

name: Check static types
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install packages
run: |
pip install --upgrade pip
pip install -e '.[tests]'
pip install --upgrade mypy
pip list
- name: Run mypy
run: mypy src/ tests/