Skip to content

fix: exit orphaned stdio MCP servers on parent death #151

fix: exit orphaned stdio MCP servers on parent death

fix: exit orphaned stdio MCP servers on parent death #151

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
name: Python CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
- name: Install dependencies
run: uv pip install --system -e ".[dev]"
- name: Run linter
run: ruff check .
- name: Check formatting
run: ruff format --check .
- name: Run tests with coverage
run: pytest tests/ -v --cov=. --cov-report=xml --cov-report=term-missing
- name: Upload coverage
uses: codecov/codecov-action@v6
with:
files: ./coverage.xml
continue-on-error: true