File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ PHPCSFIXER?=$(EXEC) php -d memory_limit=1024m vendor/bin/php-cs-fixer
7
7
.PHONY : help start stop restart install uninstall reset clear-cache tty clear clean
8
8
.PHONY : db-diff db-migrate db-rollback db-reset db-validate wait-for-db
9
9
.PHONY : watch assets assets-build
10
- .PHONY : tests lint lint-symfony lint-yaml lint-twig php-cs php-cs-fix security-check
10
+ .PHONY : tests lint lint-symfony lint-yaml lint-twig php-cs php-cs-fix security-check test-schema test-all
11
11
.PHONY : deps
12
12
.PHONY : build up perm
13
13
.PHONY : docker-compose.override.yml
@@ -120,7 +120,10 @@ php-cs-fix: vendor
120
120
security-check : vendor # # Check for vulnerable dependencies
121
121
$(EXEC ) vendor/bin/security-checker security:check
122
122
123
- test-all : lint security-check tests # # Lint all, check vulnerable dependencies, run PHP tests
123
+ test-schema : vendor # # Test the doctrine Schema
124
+ $(EXEC ) $(CONSOLE ) doctrine:schema:validate --skip-sync -vvv --no-interaction
125
+
126
+ test-all : lint test-schema security-check tests # # Lint all, check vulnerable dependencies, run PHP tests
124
127
125
128
# #
126
129
# # Dependencies
You can’t perform that action at this time.
0 commit comments