Skip to content

Chore CI by adding check for links #5

Chore CI by adding check for links

Chore CI by adding check for links #5

Workflow file for this run

name: Check Markdown links
on:
push:
branches: [main]
pull_request:
schedule:
# Run once a week on Sundays
- cron: "0 9 * * 0"
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Link Checker
uses: lycheeverse/lychee-action@v2
with:
# default args: "--verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'"
args: |
--verbose
--no-progress
'./**/*.md'
'./**/*.py'
'./**/*.yml'
'./**/*.toml'
--include-verbatim
fail: true