mirror of
https://github.com/Rikj000/MoniGoMani.git
synced 2022-03-06 00:08:05 +03:00
16 lines
305 B
YAML
16 lines
305 B
YAML
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
|