docs: expand README with runtime details and usage #6
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-build | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build (no push) | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: linux/amd64 | |
| load: true | |
| push: false | |
| tags: mcp-stdio-bridge:ci | |
| - name: Smoke test runtime (uvx/node/python) | |
| run: | | |
| docker run --rm --entrypoint sh mcp-stdio-bridge:ci -lc ' | |
| set -e | |
| uv --version | |
| which uvx | |
| uvx --help >/dev/null | |
| node -v | |
| python3 -V | |
| mcp-proxy --help >/dev/null | |
| ' |