Skip to content

Commit 46dbc8f

Browse files
committed
GH Actions: PHP 8.4 has been released
* Builds against PHP 8.4 are no longer allowed to fail. * Add _allowed to fail_ build against PHP 8.5. Ref: https://www.php.net/releases/8.4/en.php
1 parent 1aa0d83 commit 46dbc8f

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
php: ['8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']
28+
php: ['8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']
2929
dependency-version: ['prefer-stable']
3030
experimental: [false]
3131

@@ -51,8 +51,11 @@ jobs:
5151
- php: '8.3'
5252
dependency-version: 'prefer-lowest'
5353
experimental: false
54-
5554
- php: '8.4'
55+
dependency-version: 'prefer-lowest'
56+
experimental: false
57+
58+
- php: '8.5'
5659
dependency-version: 'prefer-stable'
5760
experimental: true
5861

@@ -85,12 +88,12 @@ jobs:
8588
run: composer require --no-update phpunit/phpunit:"^9.0" --no-interaction
8689

8790
- name: Install dependencies - normal
88-
if: ${{ matrix.php < 8.4 }}
91+
if: ${{ matrix.php < 8.5 }}
8992
run: |
9093
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
9194
9295
- name: Install dependencies - ignore platform reqs
93-
if: ${{ matrix.php >= 8.4 }}
96+
if: ${{ matrix.php >= 8.5 }}
9497
run: |
9598
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --ignore-platform-req=php+ --no-interaction
9699

0 commit comments

Comments
 (0)