[develop]: Regression test improvements #129
This file contains hidden or 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: Doc Tests | |
| on: | |
| # push: | |
| pull_request: | |
| branches: | |
| - develop | |
| - 'release/*' | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash -leo pipefail {0} | |
| jobs: | |
| doc_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install package dependencies | |
| run: sudo apt-get update --yes && sudo apt-get install --yes plantuml | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Sphinx build | |
| run: | | |
| pip install Sphinx==7.4.7 | |
| pip install sphinx-rtd-theme | |
| pip install sphinxcontrib-bibtex | |
| pip install sphinxcontrib-plantuml | |
| # - name: Check tech docs | |
| # run: .github/scripts/check_tech_doc.sh | |
| - name: Build documentation | |
| run: | | |
| cd doc | |
| make clean && make html | |
| # - name: Check links | |
| # if: ${{ !cancelled() }} | |
| # run: | | |
| # cd doc | |
| # make linkcheck |