Add baseline quality checks (#357)

This commit is contained in:
Fabian
2026-07-31 06:11:25 +01:00
committed by GitHub
parent c5c178f214
commit 6726f9c6e4
3 changed files with 176 additions and 2 deletions
+11 -2
View File
@@ -422,8 +422,17 @@ docker compose up -d
# Logs
docker compose logs -f web
# Validate PHP files
find . -name '*.php' -not -path './var/*' -print0 | xargs -0 -n1 php -l
# Run every local quality check
./scripts/check.sh
# Run only PHP syntax checks and regression tests
./scripts/check.sh php
# Run all zero-dependency regression and contract tests
./scripts/check.sh test
# Validate Docker Compose
./scripts/check.sh compose
```
Repository references: