Skip to content

Commit f17abe5

Browse files
committed
Add a check in CI for missing migrations
1 parent 53487cd commit f17abe5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
run: |
3636
pip install -U pip setuptools wheel
3737
pip install -r dev-requirements.txt
38+
- name: Check for ungenerated database migrations
39+
run: |
40+
python manage.py makemigrations --check --dry-run
3841
- name: Run Tests
3942
run: |
4043
python -Wd -m coverage run manage.py test -v2

0 commit comments

Comments
 (0)