Add mkdocs to CI

This commit is contained in:
Julian Ospald 2021-10-09 19:37:08 +02:00
parent c06c6b6f12
commit 32497f3a6f
Signed by: hasufell
GPG Key ID: 3786C5262ECB4A3F
1 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,5 @@
stages:
- hlint
- checks
- test
- release
@ -585,7 +585,7 @@ release:windows:
######## hlint ########
hlint:
stage: hlint
stage: checks
extends:
- .debian
script:
@ -596,3 +596,17 @@ hlint:
paths:
- report.html
when: on_failure
######## mkdocs ########
mkdocs:
stage: checks
extends:
- .debian
before_script:
- sudo apt-get update -y
- sudo apt-get install -y python3-pip
- pip3 install mkdocs
script:
- ~/.local/bin/mkdocs build
allow_failure: true