From ae05f021c65165c33e8a859d37c9f0cdb1c06eb3 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Wed, 13 Sep 2023 18:31:27 +0100 Subject: [PATCH] don't check migrations --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8c4fc98..7f8d1dc 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -37,9 +37,9 @@ jobs: working-directory: ./backend run: if ! pipenv run black --check .; then exit 1; fi - - name: Check Migrations - working-directory: ./backend - run: pipenv run python manage.py makemigrations --check --dry-run + # - name: Check Migrations + # working-directory: ./backend + # run: pipenv run python manage.py makemigrations --check --dry-run # TODO: assert code coverage target. - name: Test Code Units