From ba11c4cf42d0ba647a2f3bd102021c1b56575446 Mon Sep 17 00:00:00 2001 From: Kevin Marsh Date: Tue, 30 Jan 2024 10:54:00 -0800 Subject: [PATCH] GH actions: check that there's no missing migrations --- .github/workflows/python-package.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4f908996..19c68d6d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -72,6 +72,9 @@ jobs: - name: Lint with flake8 run: | flake8 + - name: Check no missing migrations + run: | + django-admin makemigrations --check - name: Test with unittest run: | coverage run tests/manage.py test tests