Docs #16
Workflow file for this run
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: Docs | |
on: | |
push: | |
branches: [ main, develop] | |
tags: ['v*.*.*'] | |
workflow_dispatch: | |
jobs: | |
doc: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y \ | |
tree \ | |
doxygen \ | |
python3-sphinx \ | |
graphviz | |
pip install sphinxcontrib-blockdiag | |
pip install sphinxcontrib-contentui | |
- name: Build docs | |
run: | | |
cd Documentation | |
sphinx-build -M html . build --color |