Skip to content

docs: fix architecture overview to match actual implementation #10

docs: fix architecture overview to match actual implementation

docs: fix architecture overview to match actual implementation #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install system dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y portaudio19-dev
- name: Install system dependencies (macOS)
if: matrix.os == 'macos-latest'
run: brew install portaudio
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run type checking
run: uv run mypy --strict shh/
- name: Run linting
run: uv run ruff check .
- name: Run tests (excluding E2E)
run: uv run pytest -m "not e2e"
- name: Upload coverage reports to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false