We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4acdac1 commit 8c9b670Copy full SHA for 8c9b670
1 file changed
.github/workflows/test.yml
@@ -26,10 +26,8 @@ jobs:
26
composer install $COMPOSER_FLAGS
27
28
- name: Test
29
- env:
30
- ERROR_REPORTING: 24567 # E_ALL & ~ E_DEPRECATED & ~ E_NOTICE
31
run: |
32
- php -d error_reporting=$ERROR_REPORTING
+ php -d error_reporting=$(php -r 'echo E_ALL & ~ E_DEPRECATED & ~ E_NOTICE;') \
33
-d xdebug.mode=coverage \
34
-d xdebug.overload_var_dump=0 \
35
vendor/bin/phpunit
0 commit comments