CI/docs hygiene: nav Overview + reusable _checks.yml#46
Merged
Conversation
Removes the latent "index.md not in nav" INFO from mkdocs build --strict that's been there since the docs were structured. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Mirrors modern-di's structure: ci.yml only owns the push/PR triggers and concurrency group; _checks.yml owns the lint + pytest job bodies and is reusable via workflow_call. No behavior change today; enables future workflows (scheduled, manual) to run the same checks without duplication. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two small follow-ups from the GH Pages migration:
docs: register index.md in mkdocs nav as Overview— removes the latentindex.md not in navINFO frommkdocs build --strict.docs/index.mdnow shows in the nav as the top-level "Overview" entry.ci: split ci.yml into thin caller + reusable _checks.yml— mirrors modern-di's structure.ci.ymlowns push/PR triggers and concurrency;_checks.ymlowns lint + pytest job bodies viaworkflow_call. Postgres service and Python 3.13/3.14 matrix preserved verbatim. No behavior change today; enables future scheduled/manual workflows to reuse the same checks.Test plan
mainworkflow calls_checks.yml, which runs lint + pytest just like before.mkdocs build --strictno longer emits the index.md INFO;just lint-ciis clean; both workflow YAMLs parse and the caller correctly references_checks.yml.🤖 Generated with Claude Code