From 314edec89018502b5e39c63a45d0075ccda931f7 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Mon, 11 Dec 2023 17:59:18 +0100 Subject: [PATCH] Update django-test.yaml added makemigrations as a step for the action --- .github/workflows/django-test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/django-test.yaml b/.github/workflows/django-test.yaml index c5be0d7..d87bbad 100644 --- a/.github/workflows/django-test.yaml +++ b/.github/workflows/django-test.yaml @@ -25,6 +25,11 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + - name: Check Database Migrations + run: | + python manage.py makemigrations + env: + DJANGO_SECRET: ${{ secrets.DJANGO_SECRET }} - name: Run Tests run: | python manage.py test