Add progress updates for inbound A2A work #168
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| # Offline unit suite — inkbox is mocked in the tests, so install only what | |
| # they import. Runs on every push/PR, drafts included. | |
| unit: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install test deps | |
| run: tests/ci/retry_install.sh pip install pytest aiohttp segno claude-agent-sdk | |
| # tests/contract runs in its own job against the LATEST host, not here. | |
| # tests/live is collected but self-skips without the live API keys. | |
| - name: Test | |
| run: pytest -q --ignore=tests/contract | |
| # Contract suite — the bridge's view of the host interface, checked against | |
| # the latest published claude-agent-sdk + Claude Code CLI so upstream drift | |
| # fails a PR here instead of a live gateway later. | |
| contract-pr: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - uses: astral-sh/setup-uv@v8.1.0 | |
| with: | |
| version: "latest" | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 22 | |
| - name: Install bridge + latest SDK | |
| run: | | |
| tests/ci/retry_install.sh uv pip install --system \ | |
| "inkbox==0.5.9" \ | |
| -e . pytest | |
| tests/ci/retry_install.sh uv pip install --system -U claude-agent-sdk | |
| - name: Install latest Claude Code CLI | |
| run: tests/ci/retry_install.sh npm install -g @anthropic-ai/claude-code | |
| - name: Contract tests vs latest host | |
| run: pytest -q tests/contract |