aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/doc_build.yml
blob: 4a919fa85f46c1474e60257c03ee7ad69439c3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)