Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
- run: uv python pin 3.10
- run: just install lint-ci

docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: extractions/setup-just@v4
- uses: astral-sh/setup-uv@v8.2.0
- run: just docs-build

pytest:
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mkdocs
mkdocs-material
mkdocs>=1.6,<2
mkdocs-material>=9,<10
7 changes: 7 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ repo_url: https://github.com/modern-python/lite-bootstrap
docs_dir: docs
edit_uri: edit/main/docs/
nav:
- Overview: index.md
- Introduction:
- Quickstart: introduction/quickstart.md
- Installation: introduction/installation.md
Expand Down Expand Up @@ -51,6 +52,12 @@ theme:
icon: material/brightness-4
name: Switch to system preference

validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn

markdown_extensions:
- toc:
permalink: true
Expand Down