[DOC-CVS] [phd] master: CI: add PHP 8.5 to test matrix (allowed to fail)
[email protected] (lacatoire via Gina Peter Banyard)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: lacatoire (lacatoire)
Committer: Gina Peter Banyard (Girgias)
Date: 2026-02-03T18:35:36Z
Commit: https://github.com/php/phd/commit/07973db68b300a25e0f96d9900c803634fbac32a
Raw diff: https://github.com/php/phd/commit/07973db68b300a25e0f96d9900c803634fbac32a.diff
CI: add PHP 8.5 to test matrix (allowed to fail)
Changed paths:
M .github/workflows/ci.yml
M .github/workflows/test.yml
Diff:
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ff7d42b4..a15ee630 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,7 +4,8 @@ jobs:
ubuntu:
strategy:
matrix:
- version: ['8.1', '8.2', '8.3', '8.4']
+ version: ['8.1', '8.2', '8.3', '8.4', '8.5']
+ continue-on-error: ${{ matrix.version == '8.5' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PhD
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7f04f7f0..c964cbb5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,7 +5,8 @@ jobs:
name: test
strategy:
matrix:
- version: ['8.1', '8.2', '8.3', '8.4']
+ version: ['8.1', '8.2', '8.3', '8.4', '8.5']
+ continue-on-error: ${{ matrix.version == '8.5' }}
runs-on: ubuntu-latest
steps:
- name: Checkout PhD