Skip to content

Bump pymdown-extensions from 10.16.1 to 10.21.3 #26

Bump pymdown-extensions from 10.16.1 to 10.21.3

Bump pymdown-extensions from 10.16.1 to 10.21.3 #26

Workflow file for this run

name: Docs Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --group dev
- name: Generate docs
run: uv run ./generate_docs
- name: Check for uncommitted changes
run: |
if ! git diff --exit-code; then
echo "Generated docs differ from committed docs. Run './generate_docs' and commit the result."
exit 1
fi