Skip to content

feat: HTTP/SSE server transport (run_http) — dual transport like the … #2

feat: HTTP/SSE server transport (run_http) — dual transport like the …

feat: HTTP/SSE server transport (run_http) — dual transport like the … #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[dev]"
- name: Lint
run: ruff check .
- name: Test
run: pytest -q
- name: Example smoke test
run: |
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' \
| python examples/echo/echo_plugin.py | grep -q '"id":"echo"'