From 8c477ae4b68727f2c8da6983ec2ea413b1faa088 Mon Sep 17 00:00:00 2001 From: Esa-Matti Suuronen Date: Tue, 21 May 2024 13:04:04 +0300 Subject: [PATCH] mariadb health check fix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91ea661..6ac7700 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: - 3306:3306 env: MARIADB_ROOT_PASSWORD: root - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3 runs-on: ubuntu-latest steps: - uses: actions/checkout@v1