a couple of fixes for problems in the code base #100
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: "Sphinx Test" | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| docs-linkcheck-nitpicky: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.12 | |
| - name: Install Dependencies | |
| run: | | |
| pip install -r docs/requirements.txt | |
| - name: Build linkcheck with nit-picky mode | |
| working-directory: docs | |
| run: | | |
| sphinx-build -W --keep-going -b linkcheck -n -d _build/doctrees . _build/linkcheck |