Skip to content

Commit 3c758b0

Browse files
authored
[TASK] Add PHP 8.4 to test matrix (#610) (#611)
1 parent 0293468 commit 3c758b0

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' ]
15+
php: [ '8.1' , '8.2', '8.3', '8.4']
1616
steps:
1717

1818
- name: Extract branch name

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.1 (default): use PHP 8.1
4545
- 8.2: use PHP 8.2
4646
- 8.3: use PHP 8.3
47+
- 8.4: use PHP 8.4
4748
4849
-x
4950
Only with -s cgl|unit
@@ -117,7 +118,7 @@ while getopts ":b:s:p:hxn" OPT; do
117118
;;
118119
p)
119120
PHP_VERSION=${OPTARG}
120-
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3)$ ]]; then
121+
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4)$ ]]; then
121122
INVALID_OPTIONS+=("${OPTARG}")
122123
fi
123124
;;

0 commit comments

Comments
 (0)