Skip to content

Commit 94780fa

Browse files
committed
ci: use PHP 8.3 in CI, until bugs are worked out for 8.4
1 parent 0ba0123 commit 94780fa

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@ jobs:
9393
name: "Test for Memory Leaks"
9494
runs-on: "ubuntu-latest"
9595

96+
strategy:
97+
fail-fast: false
98+
matrix:
99+
php:
100+
- "8.3"
101+
icu:
102+
- "73.2"
103+
96104
steps:
97105
- name: "Checkout repository"
98106
uses: "actions/checkout@v4"
@@ -106,8 +114,8 @@ jobs:
106114
- name: "Install PHP"
107115
uses: "shivammathur/[email protected]"
108116
with:
109-
php-version: "latest"
110-
extensions: "intl-73.2"
117+
php-version: "${{ matrix.php }}"
118+
extensions: "intl-${{ matrix.icu }}"
111119
coverage: "none"
112120
env:
113121
debug: true
@@ -143,9 +151,6 @@ jobs:
143151
- "72.1"
144152
- "73.1"
145153
- "73.2"
146-
include:
147-
- php-version: "8.3"
148-
composer-options: "--ignore-platform-reqs"
149154

150155
steps:
151156
- name: "Checkout repository"

0 commit comments

Comments
 (0)