Skip to content

deps: update httpx requirement from <0.28,>=0.27 to >=0.27,<0.29 #73

deps: update httpx requirement from <0.28,>=0.27 to >=0.27,<0.29

deps: update httpx requirement from <0.28,>=0.27 to >=0.27,<0.29 #73

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Tests (${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint with black and isort
run: |
black --check src tests
isort --check-only src tests
- name: Run public-surface release gates
run: |
pytest \
tests/test_release_metadata.py \
tests/test_tool_catalog_snapshot.py \
tests/test_tool_contracts.py \
tests/test_portable_schemas.py \
tests/test_domain_contracts.py \
tests/test_cross_suite_handoffs.py \
tests/test_mcp_conformance_suite.py \
-q
- name: Run tests
run: pytest