Skip to content

Update Exam Routines #349

Update Exam Routines

Update Exam Routines #349

Workflow file for this run

name: Update Exam Routines
on:
schedule:
- cron: "0 3-19/4 * * *" # 5 checks
# - cron: "0 3-19 * * *" # 16 checks
workflow_dispatch:
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- run: pip install -r requirements.txt
- name: fetching LFS files
run: |
git lfs pull
- name: checking for new exam routines
run: |
python -m bubt_cnr -examroutine
shell: bash
- name: pushing commits (if neccessary)
run: |
chmod +x commit.sh
./commit.sh
shell: bash