Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Link Check

Link Check #92

Workflow file for this run

name: Link Check
on:
schedule:
# Run every Monday at 8am to check URL links still resolve
- cron: "0 8 * * WED"
jobs:
docs:
strategy:
fail-fast: false
matrix:
python: ["3.11"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install python version
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
touch requirements_dev.txt
pip install -r requirements_dev.txt -e .[dev]
- name: Check links
run: tox -e docs -- -b linkcheck