deps(deps): bump rand from 0.10.1 to 0.10.2 #75
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: 🧪 MCP Conformance | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: conformance-${{ github.event.pull_request.number || github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| server-conformance: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: conformance-server | |
| - name: Build conformance server | |
| run: cargo build -p conformance-server --release | |
| - name: Start server | |
| run: | | |
| cargo run -p conformance-server --release & | |
| timeout 30 bash -c 'until curl -sf http://localhost:3000/health; do sleep 0.5; done' | |
| - uses: modelcontextprotocol/conformance@v0.1.16 | |
| with: | |
| mode: server | |
| url: http://localhost:3000/mcp | |
| client-conformance: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: conformance-client | |
| - name: Build conformance client | |
| run: cargo build -p conformance-client --release | |
| - uses: modelcontextprotocol/conformance@v0.1.16 | |
| with: | |
| mode: client | |
| command: ./target/release/conformance-client | |
| suite: core |