Files
VacatureRadar/scripts/codex_verify.sh
T
Jens b8091e59bd
deploy / deploy (push) Canceled after 0s
Initial deploy setup
2026-07-21 14:00:00 +02:00

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'