Skip to content

Commit

Permalink
add requirements.txt to install mkdocs plugins (incl. mkdocs-redirects)
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Nov 9, 2023
1 parent a9eb225 commit bc71d96
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
with:
python-version: '3.10'

- name: install mkdocs
- name: install mkdocs + plugins
run: |
pip install mkdocs mkdocs-material mkdocs-git-revision-date-localized-plugin mkdocs-toc-sidebar-plugin
pip install -r requirements.txt
pip list | grep mkdocs
mkdocs --version
- name: build tutorial
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ jobs:
# config: '/lint/config/changelog.yml'
# args: '.'

- name: install mkdocs
- name: install mkdocs + plugins
run: |
pip install mkdocs mkdocs-material mkdocs-git-revision-date-localized-plugin mkdocs-toc-sidebar-plugin
pip install -r requirements.txt
pip list | grep mkdocs
mkdocs --version
- name: build tutorial
Expand Down
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mkdocs
mkdocs-material
mkdocs-redirects
mkdocs-git-revision-date-localized-plugin
mkdocs-toc-sidebar-plugin

0 comments on commit bc71d96

Please sign in to comment.