Skip to content

Tell mypy that certifi is an optional import #3

Tell mypy that certifi is an optional import

Tell mypy that certifi is an optional import #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
- run: pip install -e ".[dev]"
# The suite stubs the transport, so it needs no API key and makes no network calls.
- run: pytest -q
- run: ruff check .
- run: mypy src