docs(readme): trim quickstart, self-host screenshots, reorder showcase #3
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: ["master", "main"] | |
| pull_request: | |
| branches: ["master", "main"] | |
| jobs: | |
| python: | |
| name: Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Project requires >=3.10 (see pyproject.toml). 3.14 may build deps | |
| # from source until upstream wheels land; fail-fast is off so a lagging | |
| # leg does not mask the others. | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install tkinter (legacy desktop GUI) | |
| run: sudo apt-get update && sudo apt-get install -y python3-tk | |
| - name: Sync dependencies | |
| run: uv sync --extra dev | |
| - name: Lint (ruff) | |
| run: uv run ruff check . | |
| - name: Test (pytest) | |
| run: uv run pytest -q | |
| web: | |
| name: Web client | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: web | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| cache-dependency-path: web/pnpm-lock.yaml | |
| - name: Install | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint (eslint) | |
| run: pnpm lint | |
| - name: Typecheck (tsc) | |
| run: pnpm typecheck | |
| - name: Test (vitest) | |
| run: pnpm test |