Skip to content

Update links in documentation for accuracy and consistency; refine co… #3

Update links in documentation for accuracy and consistency; refine co…

Update links in documentation for accuracy and consistency; refine co… #3

Workflow file for this run

name: Link Check
on:
push:
branches: [main]
paths:
- '**/*.md'
pull_request:
paths:
- '**/*.md'
schedule:
# Run weekly on Mondays at 09:00 UTC to catch links that rot over time
- cron: '0 9 * * 1'
permissions:
contents: read
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: >
--verbose
--no-progress
--accept 200,429
'**/*.md'
fail: true