Skip to content

docs: restore missing rows in optional components table #61

docs: restore missing rows in optional components table

docs: restore missing rows in optional components table #61

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
name: Lint & Test
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.13", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a
with:
version: "2.2.1"
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache dependencies
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
venv-${{ runner.os }}-${{ matrix.python-version }}-
- name: Install dependencies
run: poetry install --no-interaction
- name: Run linting
run: make lint
- name: Run tests
run: make test
- name: Verify migrations apply cleanly
run: DATABASE_URL=sqlite+aiosqlite:///./data/ci_migrations.db poetry run alembic upgrade head
- name: Build docs
run: poetry run mkdocs build --strict