Skip to content

Commit

Permalink
[TASK] Add PHP 8.4 to test matrix (#610) (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolli42 authored Aug 10, 2024
1 parent 0293468 commit 3c758b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1' , '8.2', '8.3' ]
php: [ '8.1' , '8.2', '8.3', '8.4']
steps:

- name: Extract branch name
Expand Down
3 changes: 2 additions & 1 deletion Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Options:
- 8.1 (default): use PHP 8.1
- 8.2: use PHP 8.2
- 8.3: use PHP 8.3
- 8.4: use PHP 8.4
-x
Only with -s cgl|unit
Expand Down Expand Up @@ -117,7 +118,7 @@ while getopts ":b:s:p:hxn" OPT; do
;;
p)
PHP_VERSION=${OPTARG}
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3)$ ]]; then
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4)$ ]]; then
INVALID_OPTIONS+=("${OPTARG}")
fi
;;
Expand Down

0 comments on commit 3c758b0

Please sign in to comment.