Skip to content

Commit

Permalink
fix: Fix MariaDB errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gchtr committed Apr 10, 2024
1 parent f5dcc8e commit 308999f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/test.yml
Expand Up @@ -23,14 +23,15 @@ jobs:

services:
mysql:
image: mariadb:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_ROOT_PASSWORD: ''
MYSQL_DATABASE: wordpress_test
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
image: mariadb:latest
env:
MYSQL_USER: root
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_ROOT_PASSWORD: ''
MYSQL_DATABASE: wordpress_test
ports:
- 3306
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3

continue-on-error: ${{ matrix.experimental }}
strategy:
Expand Down

0 comments on commit 308999f

Please sign in to comment.