Add test reproducing MCP session invalidation on server restart and implement partial fix #221
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: Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'renovate/**' | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: 'actions/checkout@v6' | |
| - name: Install uv | |
| uses: 'astral-sh/setup-uv@v7' | |
| with: | |
| version: "0.10.4" | |
| enable-cache: true | |
| - name: Setup Python | |
| uses: 'actions/setup-python@v6' | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Run checks | |
| run: make check |