-
Notifications
You must be signed in to change notification settings - Fork 9
29 lines (25 loc) · 885 Bytes
/
Copy pathdocs.yml
File metadata and controls
29 lines (25 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Docs
# Build-only check for the docs/ MkDocs source. Strict mode turns broken
# links and nav entries into build failures. This no longer deploys to
# GitHub Pages (ADR-101): asdecided.github.io/core/ is now served by
# the asdecided/asdecided.github.io umbrella site, which vendors docs/ at
# build time. Once that repo's site is live, disable Pages on this repo
# (Settings -> Pages -> Source) so its own project-page deployment stops
# shadowing the umbrella site at that URL.
on:
push:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install MkDocs
run: pip install mkdocs==1.6.1 mkdocs-material==9.7.6
- name: Build site (strict)
run: mkdocs build --strict