Skip to content

Commit 8d5ac7f

Browse files
authored
[TASK] Add PHP 8.5 to test matrix (#679)
1 parent a9f728c commit 8d5ac7f

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.1' , '8.2', '8.3', '8.4']
15+
php: [ '8.1' , '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
@@ -45,6 +45,7 @@ Options:
4545
- 8.2: use PHP 8.2
4646
- 8.3: use PHP 8.3
4747
- 8.4: use PHP 8.4
48+
- 8.5: use PHP 8.5
4849
4950
-x
5051
Only with -s cgl|unit
@@ -118,7 +119,7 @@ while getopts ":b:s:p:hxn" OPT; do
118119
;;
119120
p)
120121
PHP_VERSION=${OPTARG}
121-
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4)$ ]]; then
122+
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4|8.5)$ ]]; then
122123
INVALID_OPTIONS+=("${OPTARG}")
123124
fi
124125
;;

0 commit comments

Comments
 (0)