docs: correct agent teams and restructure the parallelism story #15
Workflow file for this run
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: Check links | |
| on: | |
| pull_request: | |
| paths: ["**/*.md"] | |
| schedule: | |
| - cron: "0 6 * * 1" # Mondays 06:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| lychee: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # 403/429: docs sites throttle bots; GitHub blob anchors aren't real HTML anchors | |
| args: >- | |
| --no-progress | |
| --accept 200,201,204,301,302,403,429 | |
| --exclude-path .claude | |
| "**/*.md" | |
| fail: true |