fix: register MCP server in correct format per CLI #3
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: tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| smoke: | |
| name: smoke test | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Run smoke tests | |
| run: python3 tests/test_smoke.py | |
| - name: Run MCP server end-to-end tests | |
| run: python3 tests/test_mcp.py | |
| - name: Verify CLI entry points are executable | |
| run: | | |
| chmod +x bin/skill bin/skill-manage bin/skill-curator bin/skill-manage-mcp | |
| test -x bin/skill && test -x bin/skill-manage && test -x bin/skill-curator && test -x bin/skill-manage-mcp | |
| - name: Lint Python (syntax-only, no external deps) | |
| run: | | |
| python3 -m compileall -q lib/ |