From 4b438568f97c7df9b743a946798ac02e93e3d90d Mon Sep 17 00:00:00 2001 From: Kevin Marsh Date: Tue, 30 Jan 2024 10:37:12 -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..b4f90e5f 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: | + tests/manage.py makemigrations --check - name: Test with unittest run: | coverage run tests/manage.py test tests