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 a0f2f34 commit c9680f5Copy full SHA for c9680f5
.github/workflows/docker.yml
@@ -89,8 +89,8 @@ jobs:
89
./bootstrap.sh
90
PHP_VERSION=$(echo ${{ matrix.container }} | sed -e 's/^php//')
91
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
+ # exit if php version is not numeric or below 80 or above 84 to only test against supported ones in server master
+ if ! [[ $PHP_VERSION =~ ^[0-9]+$ ]] || [[ $PHP_VERSION -lt 80 ]] || [[ $PHP_VERSION -gt 84 ]]; then
94
exit 0
95
fi
96
docker compose up -d nextcloud
0 commit comments