Merge pull request #560 from Terralego/mfu-update-doc-about-source #679
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
- 'install/README.rst' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- 'install/README.rst' | |
release: | |
types: | |
- created | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
container: | |
image: python:3.10 | |
env: | |
LANG: C.UTF-8 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Documentation | |
run: | | |
cd docs/ | |
pip install -r ./requirements.txt | |
make html -e SPHINXOPTS="-W" |