Skip to content

feat(compositor): personas, emotions, layer composition (plan §23) + … #73

feat(compositor): personas, emotions, layer composition (plan §23) + …

feat(compositor): personas, emotions, layer composition (plan §23) + … #73

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
jobs:
test:
name: test (${{ matrix.os }} · py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
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
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Test
run: pytest -q
env:
WRITINGAGENT_FAKE: "1" # tests run fully offline; no API key needed