Skip to content

Commit b05308f

Browse files
jrfnlsolardiz
authored andcommittedNov 22, 2024
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 b92823e commit b05308f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
21+
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
2222

23-
continue-on-error: ${{ matrix.php == '8.4' }}
23+
continue-on-error: ${{ matrix.php == '8.5' }}
2424

2525
name: "Test: PHP ${{ matrix.php }}"
2626

@@ -43,9 +43,9 @@ jobs:
4343

4444
strategy:
4545
matrix:
46-
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
46+
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
4747

48-
continue-on-error: ${{ matrix.php == '8.4' }}
48+
continue-on-error: ${{ matrix.php == '8.5' }}
4949

5050
name: "Unit Test: PHP ${{ matrix.php }}"
5151

@@ -63,14 +63,14 @@ jobs:
6363
# Install dependencies and handle caching in one go.
6464
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
6565
- name: Install Composer dependencies - normal
66-
if: ${{ matrix.php != '8.4' }}
66+
if: ${{ matrix.php != '8.5' }}
6767
uses: "ramsey/composer-install@v3"
6868
with:
6969
# Bust the cache at least once a month - output format: YYYY-MM.
7070
custom-cache-suffix: $(date -u "+%Y-%m")
7171

7272
- name: Install Composer dependencies - ignore PHP restrictions
73-
if: ${{ matrix.php == '8.4' }}
73+
if: ${{ matrix.php == '8.5' }}
7474
uses: "ramsey/composer-install@v3"
7575
with:
7676
composer-options: --ignore-platform-req=php+

0 commit comments

Comments
 (0)