Support for local SMS server for lab testing #19
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: Ensure Patched Templates | |
on: | |
pull_request: | |
branches: [ main, dev ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v1 | |
with: | |
version: latest | |
python-version: '3.11' | |
- name: Test patch_templates target | |
run: | | |
make patch_templates | |
if [ -n "$(git status --porcelain)" ]; then | |
echo "Error: Running patch_templates produced changes. Please run 'make patch_templates' locally and commit the changes." | |
echo "git status" | |
git status | |
echo "git diff" | |
git diff | |
exit 1 | |
fi |