extending the use of stdio transport for mcp clients that do not supp… #132
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: 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 |