fix(mcp): support ndjson stdio clients #47
Workflow file for this run
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: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: macos-14 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Swift 6.0 | |
| uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: "6.0" | |
| - name: Build debug | |
| run: swift build | |
| - name: Build release | |
| run: swift build -c release | |
| - name: Verify version output | |
| run: .build/debug/kmsg --version | |
| - name: Run release automation tests | |
| run: python3 -m unittest tests.test_sync_homebrew_tap tests.test_release_workflow | |
| - name: Validate OpenClaw MCP server script | |
| run: python3 -m py_compile tools/kmsg-mcp.py tools/sync_homebrew_tap.py |