GH Actions: update PHP ini configuration
Add `display_startup_errors=On` as per the current recommendation from PHPUnit.
Ref: b3b159cbe9
This commit is contained in:
parent
f202f351ca
commit
91ef7d0e54
|
|
@ -63,6 +63,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php }}
|
php-version: ${{ matrix.php }}
|
||||||
|
ini-values: error_reporting=-1, display_errors=On, display_startup_errors=On
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: cs2pr
|
tools: cs2pr
|
||||||
|
|
||||||
|
|
@ -160,7 +161,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php }}
|
php-version: ${{ matrix.php }}
|
||||||
coverage: ${{ matrix.coverage && 'xdebug' || 'none' }}
|
coverage: ${{ matrix.coverage && 'xdebug' || 'none' }}
|
||||||
ini-values: sendmail_path=/usr/sbin/sendmail -t -i, error_reporting=E_ALL, display_errors=On
|
ini-values: sendmail_path=/usr/sbin/sendmail -t -i, error_reporting=-1, display_errors=On, display_startup_errors=On
|
||||||
extensions: ${{ steps.set_extensions.outputs.EXT }}
|
extensions: ${{ steps.set_extensions.outputs.EXT }}
|
||||||
|
|
||||||
# Install dependencies and handle caching in one go.
|
# Install dependencies and handle caching in one go.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue