We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c792f commit 1b8c0acCopy full SHA for 1b8c0ac
1 file changed
.github/workflows/build.yml
@@ -21,8 +21,8 @@ jobs:
21
strategy:
22
fail-fast: false
23
matrix:
24
- php: ["8.2", "8.3"]
25
- symfony: ["^6.4", "^7.1"]
+ php: [ "8.2", "8.3" ]
+ symfony: [ "^6.4", "^7.1" ]
26
node: ["20.x"]
27
mysql: ["8.0"]
28
@@ -76,6 +76,10 @@ jobs:
76
name: Run webserver
77
run: (cd tests/Application && symfony server:start --port=8080 --dir=public --daemon)
78
79
+ -
80
+ name: Validate composer.json
81
+ run: composer validate --ansi --strict
82
+
83
-
84
name: Get Composer cache directory
85
id: composer-cache
@@ -171,6 +175,10 @@ jobs:
171
175
name: Run PHPStan
172
176
run: vendor/bin/phpstan analyse -c phpstan.neon -l max src/
173
177
178
179
+ name: Run Psalm
180
+ run: vendor/bin/psalm
181
174
182
183
name: Run PHPSpec
184
run: vendor/bin/phpspec run --ansi -f progress --no-interaction
0 commit comments