Skip to content

Commit bbfe413

Browse files
Update test workflow to handle PHP 8.5 dependency installation separately
1 parent ee64db9 commit bbfe413

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ jobs:
2525
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
2626
coverage: xdebug
2727

28-
- name: Install dependencies
28+
- name: Install dependencies for ${{ matrix.php }}
29+
if: matrix.php != '8.5'
2930
run: composer install --prefer-dist --no-progress --no-interaction --no-suggest
3031

32+
- name: Install dependencies for ${{ matrix.php }}
33+
if: matrix.php == '8.5'
34+
run: composer update --prefer-dist --no-progress --no-interaction
35+
3136
- name: Execute tests
3237
run: composer test

0 commit comments

Comments
 (0)