Harden tray sync and debate pump #53
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: | |
| workflow_dispatch: | |
| env: | |
| PIP_DISABLE_PIP_VERSION_CHECK: "1" | |
| QT_QPA_PLATFORM: offscreen | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install Linux Qt runtime libs | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libegl1 libgl1 libopengl0 libxkbcommon-x11-0 libxcb-cursor0 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install ".[dev,gui]" ruff | |
| - name: Editable install + manifest-completeness gate | |
| # Per v3.9.4 (msg:f21d82cc): exercise the same editable | |
| # MAPPING that production MCP entrypoints use, then run the | |
| # manifest-completeness probe BEFORE the full suite so | |
| # missing-module bugs surface as an explicit early-stage | |
| # failure rather than getting diluted across the 760-test run. | |
| run: | | |
| pip install -e . | |
| pytest tests/test_pyproject_manifest_completeness.py -v | |
| - name: Ruff | |
| run: ruff check . | |
| - name: Pytest | |
| run: pytest -q |