We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0293468 commit 3c758b0Copy full SHA for 3c758b0
.github/workflows/ci.yml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- php: [ '8.1' , '8.2', '8.3' ]
+ php: [ '8.1' , '8.2', '8.3', '8.4']
16
steps:
17
18
- name: Extract branch name
Build/Scripts/runTests.sh
@@ -44,6 +44,7 @@ Options:
44
- 8.1 (default): use PHP 8.1
45
- 8.2: use PHP 8.2
46
- 8.3: use PHP 8.3
47
+ - 8.4: use PHP 8.4
48
49
-x
50
Only with -s cgl|unit
@@ -117,7 +118,7 @@ while getopts ":b:s:p:hxn" OPT; do
117
118
;;
119
p)
120
PHP_VERSION=${OPTARG}
- if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3)$ ]]; then
121
+ if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4)$ ]]; then
122
INVALID_OPTIONS+=("${OPTARG}")
123
fi
124
0 commit comments