External Links Check #43
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: External Links Check | |
| on: | |
| schedule: | |
| - cron: '0 9 * * 1-5' # 9 AM UTC weekdays | |
| workflow_dispatch: | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies (with httpx) | |
| working-directory: tools | |
| run: uv sync --all-extras | |
| - name: Check external links | |
| working-directory: tools | |
| run: uv run check-external-links |