Skip to content

Link check

Link check #139

Workflow file for this run

---
name: Link check
on:
schedule:
- cron: '0 3 * * *'
workflow_call:
jobs:
linkcheck:
runs-on: ubuntu-latest
# We use a standard Debian image to mirror a typical developer environment.
# This should be updated whenever a new Debian stable version is available.
container: debian:bullseye
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends make python3-pip
pip install poetry==1.4.0
poetry install --no-ansi
- name: Run lint
run: |
make docs-linkcheck