Bump actions/checkout from 6 to 7 #1366
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: Check links in documentation | |
| on: [push, pull_request] | |
| env: | |
| APT_INSTALL: sudo apt-get install -y --no-install-recommends | |
| PIP: python -m pip | |
| SPHINX: python -m sphinx -W --keep-going --color | |
| jobs: | |
| linkcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pandoc | |
| run: | | |
| $APT_INSTALL pandoc | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3" | |
| - name: Show Python version | |
| run: | | |
| python --version | |
| - name: Install Python package | |
| run: | | |
| $PIP install --group doc . | |
| - name: Check links | |
| run: | | |
| $SPHINX -d _doctrees/ doc/ _build/linkcheck/ -b linkcheck -q | |
| - name: Upload results | |
| uses: actions/upload-artifact@v7 | |
| if: ${{ success() || failure() }} | |
| with: | |
| name: linkcheck | |
| path: _build/linkcheck/output.* |