feat: align the MCP example and guides with the 2026-07-28 specification #8
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: Validate | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: validate-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies and dev tools | |
| run: uv pip install --system -r requirements-dev.lock.txt ruff | |
| - name: Lint with ruff | |
| run: ruff check . | |
| - name: Run tests | |
| run: python -m pytest | |
| - name: Validate catalog | |
| run: python tools/validate_catalog.py | |
| - name: Verify public JSON export | |
| run: python tools/export_catalog.py --check | |
| - name: Verify browsable README indexes | |
| run: python tools/render_readmes.py --check | |
| - name: Verify first-party content manifest | |
| run: python tools/build_content_manifest.py --check | |
| - name: Verify runnable examples | |
| run: python tools/verify_examples.py |