File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 38
38
php-version : ${{ matrix.php }}
39
39
# With stable PHPCS dependencies, allow for PHP deprecation notices.
40
40
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.
41
- ini-values : error_reporting=-1, display_errors=On
41
+ ini-values : error_reporting=-1, display_errors=On, display_startup_errors=On
42
42
coverage : ${{ github.ref_name == 'develop' && 'xdebug' || 'none' }}
43
43
44
44
- name : Enable creation of `composer.lock` file
Original file line number Diff line number Diff line change 91
91
id : set_ini
92
92
run : |
93
93
if [ "${{ matrix.dependencies }}" != "dev" ]; then
94
- echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> "$GITHUB_OUTPUT"
94
+ echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On, display_startup_errors=On ' >> "$GITHUB_OUTPUT"
95
95
else
96
- echo 'PHP_INI=error_reporting=-1, display_errors=On' >> "$GITHUB_OUTPUT"
96
+ echo 'PHP_INI=error_reporting=-1, display_errors=On, display_startup_errors=On ' >> "$GITHUB_OUTPUT"
97
97
fi
98
98
99
99
- name : Set up PHP
You can’t perform that action at this time.
0 commit comments