From 2b5c55c33d319bd50ef2fb12f801ed86b6adc8dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Chru=C5=9Bciel?= Date: Tue, 18 Jan 2022 09:25:13 +0100 Subject: [PATCH] [Maintenance] Bring back schema validate --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cdd2f17e96..b997c8fe56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -135,6 +135,10 @@ jobs: name: Prepare test application cache run: bin/console cache:warmup -vvv + - + name: Prepare Messenger transport (Doctrine) + run: bin/console messenger:setup-transports -vvv + - name: Load fixtures run: bin/console sylius:fixtures:load -n @@ -156,6 +160,10 @@ jobs: name: Run PHPStan run: vendor/bin/phpstan analyse -c phpstan.neon -l max src/ + - + name: Validate database schema + run: bin/console doctrine:schema:validate + - name: Run PHPSpec run: vendor/bin/phpspec run --ansi -f progress --no-interaction