2 Commits

Author SHA1 Message Date
9b97a466bd test mkdocs_strict
Some checks failed
CI - Docs build check / build-check (push) Failing after 4s
2026-01-19 14:25:27 -06:00
a850448f0a skip pip cache. 2026-01-19 14:22:33 -06:00

View File

@@ -19,9 +19,10 @@ jobs:
uses: actions/checkout@v4
- name: Setup Python
if: false
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.11"
cache: "pip"
cache-dependency-path: mkdocs/requirements.txt
@@ -33,7 +34,7 @@ jobs:
- name: MkDocs build
run: |
set -euo pipefail
echo "MKDOCS_STRICT: $MKDOCS_STRICT"
MKDOCS_STRICT="${MKDOCS_STRICT:-true}"
STRICT_FLAG=""
if [ "${MKDOCS_STRICT}" = "true" ]; then