Skip to content

Check links

Check links #44

Workflow file for this run

name: Check links
on:
pull_request:
paths-ignore:
- 'README.md'
schedule:
# weekly on Wednesday
- cron: '0 12 * * 3'
workflow_dispatch:
permissions: {}
env:
SPHINXOPTS: --color
jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Check external links
run: make linkcheck