Skip to content

V2.2.5: Conversation mode, Pocket TTS, Better Obsidian #15

V2.2.5: Conversation mode, Pocket TTS, Better Obsidian

V2.2.5: Conversation mode, Pocket TTS, Better Obsidian #15

Workflow file for this run

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/