Check templates #247
This file contains 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 templates | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: '27 0 * * 1' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install json5 | |
- name: Check templates | |
run: | | |
python3 scripts/get_templates.py | |
if [ $? -ne 0 ]; then | |
exit 1 | |
fi |