ci: use conformance repo's composite GitHub Action #13
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: Conformance Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: conformance-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| server-conformance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| enable-cache: true | |
| version: 0.9.5 | |
| - run: uv sync --frozen --all-extras --package mcp-everything-server | |
| - name: Start everything-server | |
| run: | | |
| uv run --frozen mcp-everything-server --port 3001 & | |
| timeout 15 bash -c 'until curl -s http://localhost:3001/mcp > /dev/null 2>&1; do sleep 0.5; done' | |
| echo "Server ready" | |
| - uses: modelcontextprotocol/conformance@ab789d6f03b7b3561b80a6e835bd07aa8d87c10a | |
| with: | |
| mode: server | |
| url: http://localhost:3001/mcp | |
| client-conformance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| enable-cache: true | |
| version: 0.9.5 | |
| - run: uv sync --frozen --all-extras --package mcp | |
| - uses: modelcontextprotocol/conformance@ab789d6f03b7b3561b80a6e835bd07aa8d87c10a | |
| with: | |
| mode: client | |
| command: "uv run --frozen python .github/actions/conformance/client.py" | |
| suite: all |