Update links in documentation for accuracy and consistency; refine co… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |