Skip to content

Commit c1330b8

Browse files
authored
[TASK] Add PHP 8.4 to test matrix (#610) (#612)
1 parent 4d0317f commit c1330b8

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: [ '7.4', '8.0', '8.1', '8.2' ]
15+
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1616
steps:
1717
- name: Extract branch name
1818
shell: bash

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: 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
@@ -114,7 +115,7 @@ while getopts ":b:s:p:hxn" OPT; do
114115
;;
115116
p)
116117
PHP_VERSION=${OPTARG}
117-
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3)$ ]]; then
118+
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3|8.4)$ ]]; then
118119
INVALID_OPTIONS+=("${OPTARG}")
119120
fi
120121
;;

0 commit comments

Comments
 (0)