V2.2.5: Conversation mode, Pocket TTS, Better Obsidian #15
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] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-and-test: | |
| name: Ruff + pytest (no GPU) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: pip | |
| - name: Install light dependencies | |
| # The full Qwen3 pipeline is GPU-resident and stubbed in tests; CI only | |
| # needs the lightweight deps the suite imports unstubbed. | |
| run: pip install -r requirements-ci.txt | |
| - name: Ruff | |
| run: ruff check . | |
| - name: Pytest | |
| run: pytest tests/ |