Skip to content

Check Tutorials for Warnings and Errors #13

Check Tutorials for Warnings and Errors

Check Tutorials for Warnings and Errors #13

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