We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f73ed7e commit 5d10544Copy full SHA for 5d10544
.github/workflows/deployment.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Install dependencies
17
run: |
18
python -m pip install --upgrade pip
19
- pip install mkdocs mkdocs-material pygments pymdown-extensions
+ pip install -U -r requirements.txt
20
- name: Build mkdocs
21
22
mkdocs build --verbose -d build
README.md
@@ -14,5 +14,5 @@ To view your changes locally:
14
15
1. install [MkDocs](https://www.mkdocs.org/#installation) and the required extensions.
- `pip install -U mkdocs mkdocs-material pygments pymdown-extensions`
+ `pip install -U -r requirements.txt`
2. run `mkdocs serve`
requirements.txt
@@ -0,0 +1,4 @@
1
+mkdocs
2
+mkdocs-material
3
+pygments
4
+pymdown-extensions
0 commit comments