13 lines
370 B
Bash
13 lines
370 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
mkdir -p local
|
|
uv run ruff check .
|
|
uv run python manage.py check
|
|
uv run python manage.py makemigrations --check --dry-run
|
|
uv run pytest --cov=apps --cov=config --cov-report=term-missing
|
|
python scripts/validate_task_ledger.py
|
|
python scripts/validate_repository.py
|
|
printf '\nAlle kwaliteitsgates geslaagd.\n'
|