Skip to content

extending the use of stdio transport for mcp clients that do not supp… #132

extending the use of stdio transport for mcp clients that do not supp…

extending the use of stdio transport for mcp clients that do not supp… #132

Workflow file for this run

name: CI
on:
push:
branches: [dev]
pull_request:
branches: [dev]
jobs:
test:
runs-on: ubuntu-latest
env:
GX_ANALYTICS_ENABLED: "false"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: |
uv sync
uv pip install -e ".[dev]"
- name: Lint with ruff
run: |
uv run ruff check .
- name: Type check with mypy
run: |
uv run mypy gx_mcp_server/
- name: Run tests with pytest
run: |
uv run pytest