diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/doc_build.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/doc_build.yml b/.github/workflows/doc_build.yml new file mode 100644 index 00000000..4a919fa8 --- /dev/null +++ b/.github/workflows/doc_build.yml @@ -0,0 +1,21 @@ +name: Doc building + +on: [push, pull_request] + +jobs: + + doc_building: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install Requirements + run: | + sudo apt update + sudo apt install -y python3-pip python3-setuptools python3-dev python3-wheel doxygen gcc + sudo pip3 install sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe + + - name: Build doc + run: | + (cd docs; make html) |
