We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f5180 commit d6a0147Copy full SHA for d6a0147
.github/workflows/ci.yml
@@ -15,12 +15,7 @@ jobs:
15
enable-cache: false
16
- name: Build static files
17
id: build
18
- run: |
19
- uv tool run \
20
- --with mkdocs-material \
21
- --with mkdocs-callouts \
22
- --with pymdown-extensions \
23
- mkdocs build --strict
+ run: make build
24
- name: Upload static files as artifact
25
id: upload
26
uses: actions/upload-pages-artifact@v3
Makefile
@@ -0,0 +1,15 @@
1
+.PHONY: build serve
2
+
3
+build:
4
+ uv tool run \
5
+ --with mkdocs-material \
6
+ --with mkdocs-callouts \
7
+ --with pymdown-extensions \
8
+ mkdocs build --strict
9
10
+serve:
11
12
13
14
+ mkdocs serve
0 commit comments