Skip to content

🔄 Bump the github-actions group with 3 updates #607

🔄 Bump the github-actions group with 3 updates

🔄 Bump the github-actions group with 3 updates #607

Workflow file for this run

name: 🧪 Docs Test WorkFlow 📚
on:
pull_request:
branches: [main, develop]
# Restrict permissions by default
permissions:
contents: read # Required for checkout
checks: write # Required for test reporting
jobs:
docs-build-test:
name: Test docs build
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: 🐍 Install uv and set Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: 🏗️ Install dependencies
run: uv pip install -r pyproject.toml --group docs --python-version ${{ matrix.python-version }}
- name: 🧪 Test Docs Build
run: uv run mkdocs build --verbose