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.
2 parents 5704b4f + 48fccb4 commit c754a60Copy full SHA for c754a60
.github/workflows/qa.yml
@@ -30,10 +30,13 @@ jobs:
30
31
- name: ✅ PHPStan
32
uses: docker://jakzal/phpqa:1.111-php8.3-alpine
33
- with:
34
- args: phpstan analyse --configuration ./.qa/phpstan.neon --no-progress
35
env:
36
- COMPOSER_IGNORE_PLATFORM_REQ: ext-mongodb
+ COMPOSER_IGNORE_PLATFORM_REQ: ext-mongodb
+ # this will hide the output of the automatic call to `composer install`
+ SHELL_VERBOSITY: -1
37
+ with:
38
+ # `SHELL_VERBOSITY=0` will restore the default verbosity, so that PHPStan output the results
39
+ args: sh -c "SHELL_VERBOSITY=0 phpstan analyse --configuration ./.qa/phpstan.neon --no-progress"
40
41
composer-validate:
42
name: 🎵 Composer validate
0 commit comments