Skip to content

Merge remote-tracking branch 'origin' into docs #2

Merge remote-tracking branch 'origin' into docs

Merge remote-tracking branch 'origin' into docs #2

Workflow file for this run

name: Link Check
on:
workflow_dispatch:
schedule:
# Run weekly to check URL links still resolve
- cron: "0 8 * * WED"
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install python packages
uses: pip install -c requirements.txt
- name: Check links
run: sphinx-build -b linkcheck -T docs build/html