Skip to content

Commit d54e6ed

Browse files
authored
Add php84 to build matrix
1 parent 724fa0f commit d54e6ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: ['ubuntu-latest']
15-
php: ['8.0', '8.1', '8.2', '8.3']
16-
continue-on-error: ${{ matrix.php == '8.3' }}
15+
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
16+
continue-on-error: ${{ matrix.php == '8.4' }}
1717
steps:
1818
- uses: actions/checkout@v2
1919

@@ -26,15 +26,15 @@ jobs:
2626
run: composer validate
2727

2828
- name: Install dependencies
29-
if: ${{ matrix.php != '8.3' }}
29+
if: ${{ matrix.php != '8.4' }}
3030
uses: nick-invision/retry@v2
3131
with:
3232
timeout_minutes: 5
3333
max_attempts: 3
3434
command: composer update --no-interaction --no-progress
3535

3636
- name: Install Dependencies (ignore platform)
37-
if: ${{ matrix.php == '8.3' }}
37+
if: ${{ matrix.php == '8.4' }}
3838
uses: nick-invision/retry@v2
3939
with:
4040
timeout_minutes: 5

0 commit comments

Comments
 (0)