1
0
mirror of https://github.com/Rikj000/MoniGoMani.git synced 2022-03-06 00:08:05 +03:00

Added docs.yml & .readthedocs.yaml

This commit is contained in:
Rik Helsen
2021-10-14 20:13:57 +02:00
parent 40eeef0cf0
commit 9348ccfc6a
2 changed files with 30 additions and 0 deletions

15
.github/workflows/docs.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
docs_check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Documentation build
run: |
pip install -r Documentation/requirements-docs.txt
pip install mkdocs
mkdocs build

15
.readthedocs.yaml Normal file
View File

@@ -0,0 +1,15 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
mkdocs:
configuration: mkdocs.yml
fail_on_warning: false
python:
version: "3.8"
install:
- requirements: Documentation/requirements-docs.txt