From 5f16df92a949203651ee16edd3c0a604419d3141 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 10 Aug 2025 04:24:21 +0200 Subject: [PATCH] GH Actions: update PHP ini configuration Add `display_startup_errors=On` as per the current recommendation from PHPUnit. Ref: https://github.com/sebastianbergmann/phpunit-documentation-english/commit/b3b159cbe9bd7eb5656dd381fc6f028549601dce --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fb27ec1..d466126 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,7 @@ jobs: uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # 2.35.5 with: php-version: ${{ matrix.php }} - ini-values: zend.assertions=1, error_reporting=-1, display_errors=On + ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, display_startup_errors=On coverage: none tools: cs2pr @@ -110,7 +110,7 @@ jobs: uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # 2.35.5 with: php-version: ${{ matrix.php }} - ini-values: zend.assertions=1, error_reporting=-1, display_errors=On + ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, display_startup_errors=On coverage: xdebug - name: Install Composer dependencies - normal