Skip to content

Commit 1b8c0ac

Browse files
committed
Fix
1 parent 29c792f commit 1b8c0ac

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 2 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
@@ -171,6 +175,10 @@ jobs:
171175
name: Run PHPStan
172176
run: vendor/bin/phpstan analyse -c phpstan.neon -l max src/
173177

178+
-
179+
name: Run Psalm
180+
run: vendor/bin/psalm
181+
174182
-
175183
name: Run PHPSpec
176184
run: vendor/bin/phpspec run --ansi -f progress --no-interaction

0 commit comments

Comments
 (0)