Skip to content

Commit 45ffb60

Browse files
committed
Run coverage job also on PHP8.5, which has opcache builtin by default
1 parent 2a25f2a commit 45ffb60

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,13 @@ jobs:
207207
runs-on: ubuntu-latest
208208
timeout-minutes: 10
209209

210+
strategy:
211+
fail-fast: false
212+
matrix:
213+
php-version:
214+
- "8.4"
215+
- "8.5"
216+
210217
steps:
211218
- name: Checkout
212219
uses: actions/checkout@v4
@@ -225,7 +232,7 @@ jobs:
225232
- name: Install PHP with extensions
226233
uses: shivammathur/setup-php@v2
227234
with:
228-
php-version: ${{ env.PHP_VERSION }}
235+
php-version: ${{ matrix.php-version }}
229236
coverage: xdebug
230237
extensions: none, ctype, curl, dom, json, libxml, mbstring, pdo, phar, tokenizer, xml, xmlwriter
231238
ini-values: zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On

0 commit comments

Comments
 (0)