Skip to content

Commit ddf7631

Browse files
authored
[TASK] Add PHP 8.4 to test matrix (#610) (#613)
1 parent 641fec2 commit ddf7631

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
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
16+
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

Build/Scripts/runTests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Options:
4646
- 8.1: use PHP 8.1
4747
- 8.2: use PHP 8.2
4848
- 8.3: use PHP 8.3
49+
- 8.4: use PHP 8.4
4950
5051
-x
5152
Only with -s cgl|unit
@@ -116,7 +117,7 @@ while getopts ":b:s:p:hxn" OPT; do
116117
;;
117118
p)
118119
PHP_VERSION=${OPTARG}
119-
if ! [[ ${PHP_VERSION} =~ ^(7.2|7.3|7.4|8.0|8.1|8.2|8.3)$ ]]; then
120+
if ! [[ ${PHP_VERSION} =~ ^(7.2|7.3|7.4|8.0|8.1|8.2|8.3|8.4)$ ]]; then
120121
INVALID_OPTIONS+=("${OPTARG}")
121122
fi
122123
;;

0 commit comments

Comments
 (0)