- Remove runtime artifacts (app.log, .DS_Store, committed home dir data) - Remove AI session notes (prompt.md, agent.md, LOGGING_*.md) - Move TUI.md, structure.md, docker-setup.md to docs/ - Normalize author metadata to Jarian Cottingham - Fix hardcoded personal paths in gunicorn config and manual test script - Pin textual <2.0 (8.x grid layout breaks TUI rendering) - Fix stale tests: private attr access, missing screen push - Add CI workflow (ruff + pytest, Python 3.10-3.12)
30 lines
556 B
YAML
30 lines
556 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: astral-sh/setup-uv@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: uv sync --all-extras --locked
|
|
|
|
- name: Lint
|
|
run: uv run ruff check .
|
|
|
|
- name: Run tests
|
|
run: uv run python -m pytest tests/ -v
|