Skip to content

refactor(metrics): enforce strict typing, sanitize docs & fix numpy 2.0 compat #194

refactor(metrics): enforce strict typing, sanitize docs & fix numpy 2.0 compat

refactor(metrics): enforce strict typing, sanitize docs & fix numpy 2.0 compat #194

Workflow file for this run

name: Docs/Test Workflow
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
concurrency:
group: docs-test-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
# Restrict permissions by default
permissions:
contents: read # Required for checkout
checks: write # Required for test reporting
jobs:
docs-build:
name: Test docs build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 🐍 Install uv and set Python
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
python-version: "3.10"
activate-environment: true
- name: πŸ—οΈ Install dependencies
run: uv pip install -r pyproject.toml --group docs
- name: πŸ§ͺ Test Docs Build
run: uv run mkdocs build --verbose