Skip to content

Commit 350c5e7

Browse files
committed
Merge branch 'stable' into develop
2 parents f82a4cf + 42f42a2 commit 350c5e7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/quicktest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: shivammathur/setup-php@v2
5454
with:
5555
php-version: ${{ matrix.php }}
56-
ini-values: error_reporting=-1, display_errors=On
56+
ini-values: error_reporting=-1, display_errors=On, display_startup_errors=On
5757
coverage: none
5858

5959
# Install dependencies and handle caching in one go.
@@ -136,9 +136,9 @@ jobs:
136136
id: set_ini
137137
run: |
138138
if [ "${{ contains( matrix.phpcs_version, 'dev' ) }}" != "true" ]; then
139-
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> "$GITHUB_OUTPUT"
139+
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On, display_startup_errors=On' >> "$GITHUB_OUTPUT"
140140
else
141-
echo 'PHP_INI=error_reporting=-1, display_errors=On' >> "$GITHUB_OUTPUT"
141+
echo 'PHP_INI=error_reporting=-1, display_errors=On, display_startup_errors=On' >> "$GITHUB_OUTPUT"
142142
fi
143143
144144
- name: Install PHP

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: shivammathur/setup-php@v2
5757
with:
5858
php-version: ${{ matrix.php }}
59-
ini-values: error_reporting=-1, display_errors=On
59+
ini-values: error_reporting=-1, display_errors=On, display_startup_errors=On
6060
coverage: none
6161
tools: cs2pr
6262

@@ -182,9 +182,9 @@ jobs:
182182
# On stable PHPCS versions, allow for PHP deprecation notices.
183183
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.
184184
if [ "${{ contains( matrix.phpcs_version, 'dev' ) }}" != "true" ]; then
185-
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> "$GITHUB_OUTPUT"
185+
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On, display_startup_errors=On' >> "$GITHUB_OUTPUT"
186186
else
187-
echo 'PHP_INI=error_reporting=-1, display_errors=On' >> "$GITHUB_OUTPUT"
187+
echo 'PHP_INI=error_reporting=-1, display_errors=On, display_startup_errors=On' >> "$GITHUB_OUTPUT"
188188
fi
189189
190190
- name: Install PHP

.github/workflows/update-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: shivammathur/setup-php@v2
5757
with:
5858
php-version: 'latest'
59-
ini-values: error_reporting=-1, display_errors=On, log_errors_max_len=0
59+
ini-values: error_reporting=-1, display_errors=On, display_startup_errors=On, log_errors_max_len=0
6060
coverage: none
6161

6262
- name: Prepare the files which will be deployed to the GH Pages website

0 commit comments

Comments
 (0)