From 3f820168ee46144af124b55e59c40d5b80f2398f Mon Sep 17 00:00:00 2001 From: Alessio Libardi <115072949+alessio-libardi-zupit@users.noreply.github.com> Date: Thu, 21 Sep 2023 09:05:29 +0200 Subject: [PATCH] fix: change django migrate to use --noinput (#52) * fix: remove --fake option from django migrate command --- .github/workflows/django-step-lint-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/django-step-lint-check.yml b/.github/workflows/django-step-lint-check.yml index ef624ee1..498aeaca 100644 --- a/.github/workflows/django-step-lint-check.yml +++ b/.github/workflows/django-step-lint-check.yml @@ -67,4 +67,4 @@ jobs: - name: Django check migrations run: python manage.py makemigrations ${{ inputs.DJANGO_MIGRATIONS_CHECK_APPS }} --check --dry-run - name: Django validate migration - run: python manage.py migrate --fake --noinput + run: python manage.py migrate --noinput