Skip to content

Fix: Various impediments and failing tests in GitHub Actions #2091

Fix: Various impediments and failing tests in GitHub Actions

Fix: Various impediments and failing tests in GitHub Actions #2091

Workflow file for this run

name: Test MkDocs
on:
pull_request:
branches:
- "**"
push:
branches:
- master
permissions:
contents: read
jobs:
test-docs-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
lfs: true
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Set up cached packages
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v6
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --frozen --group docs
- name: Test MkDocs build
run: uv run mkdocs build --strict --verbose