Skip to content

Commit 61235e3

Browse files
committed
Fix
1 parent 29c792f commit 61235e3

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
php: ["8.2", "8.3"]
25-
symfony: ["^6.4", "^7.1"]
24+
php: [ "8.2", "8.3" ]
25+
symfony: [ "^6.4", "^7.1" ]
2626
node: ["20.x"]
2727
mysql: ["8.0"]
2828

@@ -76,6 +76,10 @@ jobs:
7676
name: Run webserver
7777
run: (cd tests/Application && symfony server:start --port=8080 --dir=public --daemon)
7878

79+
-
80+
name: Validate composer.json
81+
run: composer validate --ansi --strict
82+
7983
-
8084
name: Get Composer cache directory
8185
id: composer-cache
@@ -155,10 +159,6 @@ jobs:
155159
name: Load fixtures in test application
156160
run: (cd tests/Application && bin/console sylius:fixtures:load -n)
157161

158-
-
159-
name: Validate composer.json
160-
run: composer validate --ansi --strict
161-
162162
-
163163
name: Validate database schema
164164
run: (cd tests/Application && bin/console doctrine:schema:validate)
@@ -171,6 +171,10 @@ jobs:
171171
name: Run PHPStan
172172
run: vendor/bin/phpstan analyse -c phpstan.neon -l max src/
173173

174+
-
175+
name: Run Psalm
176+
run: vendor/bin/psalm
177+
174178
-
175179
name: Run PHPSpec
176180
run: vendor/bin/phpspec run --ansi -f progress --no-interaction

0 commit comments

Comments
 (0)