Skip to content

Commit

Permalink
test now?
Browse files Browse the repository at this point in the history
  • Loading branch information
gregcorbett committed Feb 27, 2024
1 parent 3ce67ec commit 5a47dbe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
composer-json: "composer.json"
- php-version: "7.4"
composer-json: "composer-7.4.json"
- mariadb-version: "10.3"
mariadb_admin_cmd: "mysqladmin"
- mariadb-version: ["11", "latest"]
mariadb_admin_cmd: "mariadb-admin"

services:
mariadb:
Expand All @@ -39,12 +43,8 @@ jobs:
MYSQL_USER: "user"
MYSQL_PASSWORD: "password"

options: |
if [[ ${{ matrix.mariadb-version }} == "10.3" ]]
--health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
else
--health-cmd="mariadb-admin ping" --health-interval=5s --health-timeout=2s --health-retries=3
fi
options: --health-cmd="${{ matrix.mariadb_admin_cmd }} ping" --health-interval=5s --health-timeout=2s --health-retries=3

ports:
- "3306:3306"

Expand Down

0 comments on commit 5a47dbe

Please sign in to comment.