Skip to content

Implement MCP HTTP transport (v0.1.0) #1

Implement MCP HTTP transport (v0.1.0)

Implement MCP HTTP transport (v0.1.0) #1

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter @keeperhub/mcp-client build
- run: pnpm --filter @keeperhub/mcp-client test
- run: pnpm --filter @keeperhub/mcp-client type-check
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and test
working-directory: python
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pytest -q