Skip to content

LinkCheck - All files 🔗 #77

LinkCheck - All files 🔗

LinkCheck - All files 🔗 #77

Workflow file for this run

name: LinkCheck - All files 🔗
on:
schedule:
- cron: "0 5 * * 0" # Runs at 05:00 on Sunday.
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: none
jobs:
doc:
name: Check Links
runs-on: ubuntu-22.04
env:
PYVISTA_OFF_SCREEN: "True"
ALLOW_PLOTTING: true
SHELLOPTS: "errexit:pipefail"
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pip"
- uses: awalsh128/cache-apt-pkgs-action@v1.5.0
with:
packages: libosmesa6-dev libgl1-mesa-dev python3-tk pandoc git-restore-mtime
version: 3.0
- name: Install PyVista and dependencies
run: |
pip install --upgrade pip
pip install . --group docs
- name: LinkCheck
run: make -C doc linkcheck SPHINXOPTS="--color"