Check links #101
This file contains 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 | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
schedule: | |
# weekly on Wednesday | |
- cron: '0 12 * * 3' | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
linkcheck: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
- name: Check external links | |
run: make linkcheck SPHINXOPTS=--color |