Skip to content

100

100 #1

Workflow file for this run

name: Link Checker
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 1" # Run weekly on Monday at midnight
jobs:
lychee:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Link Checker
uses: lycheeverse/lychee-action@v1.9.3
with:
args: --verbose --no-progress "**/*.md"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}