Skip to content

Commit 8c9b670

Browse files
committed
Fix missing slash in multiline command
1 parent 4acdac1 commit 8c9b670

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ jobs:
2626
composer install $COMPOSER_FLAGS
2727
2828
- name: Test
29-
env:
30-
ERROR_REPORTING: 24567 # E_ALL & ~ E_DEPRECATED & ~ E_NOTICE
3129
run: |
32-
php -d error_reporting=$ERROR_REPORTING
30+
php -d error_reporting=$(php -r 'echo E_ALL & ~ E_DEPRECATED & ~ E_NOTICE;') \
3331
-d xdebug.mode=coverage \
3432
-d xdebug.overload_var_dump=0 \
3533
vendor/bin/phpunit

0 commit comments

Comments
 (0)