Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 45s
CI/CD Pipeline / Code Quality Checks (push) Failing after 48s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
CI/CD Pipeline / Deploy to Server (push) Has been skipped
11 lines
265 B
Bash
Executable File
11 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
# Django migration check script for pre-commit
|
|
|
|
cd "$(dirname "$0")/../src" || exit 1
|
|
|
|
export PYTHONPATH=.
|
|
export DJANGO_SETTINGS_MODULE=settings.test
|
|
|
|
uv run python manage.py makemigrations --check --dry-run
|
|
echo "✓ Django migrations are up to date"
|