append sems general/modules/routing sections (#147) #104
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| linkcheck: | |
| name: "Link check" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install sphinx | |
| run: pip install sphinx sphinx_rtd_theme sphinxcontrib-mermaid sphinxcontrib.googleanalytics sphinxcontrib-video | |
| - name: install graphviz | |
| run: sudo apt install graphviz | |
| - name: Run linkcheck | |
| run: make linkcheck | |
| - name: Run build | |
| env: | |
| SPHINXOPTS: "-W --keep-going -n" | |
| run: make | |