Skip to content

Commit 8e261f1

Browse files
authored
[TASK] Add PHP 8.5 to test matrix (#678)
1 parent eb8b84e commit 8e261f1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php: [ '8.2', '8.3', '8.4' ]
15+
php: [ '8.2', '8.3', '8.4', '8.5' ]
1616
steps:
1717

1818
- name: Checkout ${{ github.event_name == 'workflow_dispatch' && github.head_ref || '' }}

Build/Scripts/runTests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Options:
4444
- 8.2 (default): use PHP 8.2
4545
- 8.3: use PHP 8.3
4646
- 8.4: use PHP 8.4
47+
- 8.5: use PHP 8.5
4748
4849
-x
4950
Only with -s cgl|unit
@@ -114,7 +115,7 @@ while getopts ":b:s:p:hxn" OPT; do
114115
;;
115116
p)
116117
PHP_VERSION=${OPTARG}
117-
if ! [[ ${PHP_VERSION} =~ ^(8.2|8.3|8.4)$ ]]; then
118+
if ! [[ ${PHP_VERSION} =~ ^(8.2|8.3|8.4|8.5)$ ]]; then
118119
INVALID_OPTIONS+=("${OPTARG}")
119120
fi
120121
;;

0 commit comments

Comments
 (0)