Skip to content

check links only nightly #1

check links only nightly

check links only nightly #1

Workflow file for this run

name: Check Links
on:
push:
branches:
- master
schedule:
- cron: "0 5 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Check broken links
run: sphinx-build -nW -b linkcheck . _build