Skip to content

Commit

Permalink
test?
Browse files Browse the repository at this point in the history
  • Loading branch information
gregcorbett committed Feb 27, 2024
1 parent f3f0215 commit af296eb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
matrix:
# Define jobs for all combinations of php, mariadb and extension, up to "include"
# Tests will be performed for each combination
php-version: ["5.4", "5.5", "5.6", "7.0", "7.1", "7.4"]
mariadb-version: ["10.3", "10.4", "10.5", "10.6", "10.11", "11", "latest"]
php-version: ["5.4", "7.4"]
mariadb-version: ["10.3", "11", "latest"]
extension: ["pdo_mysql"]
include:
- php-version: "5.4"
Expand All @@ -39,7 +39,10 @@ jobs:
MYSQL_USER: "user"
MYSQL_PASSWORD: "password"

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

Expand Down

0 comments on commit af296eb

Please sign in to comment.