diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..cd38394 --- /dev/null +++ b/.github/workflows/docs.yml @@ -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 diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..10e52e8 --- /dev/null +++ b/.readthedocs.yaml @@ -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