File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,18 @@ publish: ## publish a release to pypi.
44
44
.PHONY : build-and-publish
45
45
build-and-publish : build publish # # Build and publish.
46
46
47
+ .PHONY : doc-test
48
+ doc-test : # # Test if documentation can be built without warnings or errors
49
+ @poetry run mkdocs build -f docs/mkdocs.yml -d _build -s
50
+
51
+ .PHONY : doc-build
52
+ doc-build : # # Build the documentation
53
+ @poetry run mkdocs build -f docs/mkdocs.yml -d _build
54
+
55
+ .PHONY : doc-serve
56
+ doc-serve : # # Build and serve the documentation
57
+ @poetry run mkdocs serve -f docs/mkdocs.yml
58
+
47
59
.PHONY : format
48
60
format : # # Format code with black and isort
49
61
@echo " 🎨 Formatting code"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ markdown_extensions:
90
90
alternate_style : true
91
91
- pymdownx.snippets :
92
92
check_paths : true
93
- base_path : ' ..'
94
93
- admonition
95
94
- footnotes
96
95
- codehilite
You can’t perform that action at this time.
0 commit comments