Skip to content

Commit ff47262

Browse files
committed
Merge branch 'master' into 4.x
2 parents 0ea262c + 727a68a commit ff47262

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
- name: Install PHP
192192
uses: shivammathur/setup-php@v2
193193
with:
194-
php-version: ${{ matrix.php }}
194+
php-version: ${{ matrix.php == '8.5' && '8.4' || matrix.php }}
195195
ini-values: ${{ steps.set_ini.outputs.PHP_INI }}
196196
extensions: ${{ matrix.extensions }}
197197
coverage: none
@@ -207,6 +207,14 @@ jobs:
207207
composer-options: ${{ matrix.php == '8.5' && '--ignore-platform-req=php+' || '' }}
208208
custom-cache-suffix: $(date -u "+%Y-%m")
209209

210+
- name: "Install PHP again (PHP 8.5)"
211+
if: ${{ matrix.php == '8.5' }}
212+
uses: shivammathur/setup-php@v2
213+
with:
214+
php-version: ${{ matrix.php }}
215+
ini-values: ${{ steps.set_ini.outputs.PHP_INI }}
216+
coverage: none
217+
210218
- name: Grab PHPUnit version
211219
id: phpunit_version
212220
shell: bash

0 commit comments

Comments
 (0)