Check Tutorials for Warnings and Errors #13
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 Tutorials for Warnings and Errors | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 14 * * *' # 2pm UTC == 9am EST | |
| jobs: | |
| check_tutorials: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ '3.12' }} | |
| - name: Display Python Version | |
| run: python -c "import sys; print(sys.version)" | |
| shell: bash | |
| - name: Check Tutorials for Warnings and Errors | |
| run: python check_tutorials.py | |
| shell: bash |