diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 863c0643..c8ea35e4 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -105,7 +105,12 @@ jobs: until pg_isready -h postgres -U postgres; do sleep 2; done # until redis-cli -h redis ping; do sleep 2; done - - name: Run Django migrations + - name: Make Django Migrations + run: | + source .venv/bin/activate + python manage.py makemigrations --noinput + + - name: Run Django Migrations run: | source .venv/bin/activate python manage.py migrate --noinput