Skip to content

Commit c9680f5

Browse files
committed
chore: Properly start container with 8.4 for playwright
Signed-off-by: Julius Knorr <[email protected]>
1 parent a0f2f34 commit c9680f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
./bootstrap.sh
9090
PHP_VERSION=$(echo ${{ matrix.container }} | sed -e 's/^php//')
9191
echo "PHP_VERSION=${PHP_VERSION}" >> .env
92-
# exit if php version is not numeric or below 80
93-
if ! [[ $PHP_VERSION =~ ^[0-9]+$ ]] || [[ $PHP_VERSION -lt 80 ]] || [[ $PHP_VERSION -gt 83 ]]; then
92+
# exit if php version is not numeric or below 80 or above 84 to only test against supported ones in server master
93+
if ! [[ $PHP_VERSION =~ ^[0-9]+$ ]] || [[ $PHP_VERSION -lt 80 ]] || [[ $PHP_VERSION -gt 84 ]]; then
9494
exit 0
9595
fi
9696
docker compose up -d nextcloud

0 commit comments

Comments
 (0)