Daily learn_link Check #103
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: Daily learn_link Check | |
| on: | |
| schedule: | |
| - cron: "00 04 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| check-learn-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: | | |
| pip install requests | |
| - name: Run learn link check | |
| run: | | |
| python ingest/check_learn_links.py |