From 9e2e8eb4005c49b660d849b1b22617a17d88be24 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Tue, 14 Apr 2026 10:20:26 +0000 Subject: [PATCH] fixing github actions steps and configuration --- .github/workflows/registry-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/registry-ci.yml b/.github/workflows/registry-ci.yml index ae05d3ebc..f3350e1a4 100644 --- a/.github/workflows/registry-ci.yml +++ b/.github/workflows/registry-ci.yml @@ -18,12 +18,15 @@ jobs: - engine: postgres image: postgres:16-alpine port: 5432 + health_cmd: 'pg_isready -U "$POSTGRES_USER" -d "$POSTGRES_DB"' - engine: mysql image: mysql:8.0 port: 3306 + health_cmd: 'mysqladmin ping -h 127.0.0.1 -uroot -p"$MYSQL_ROOT_PASSWORD" --silent' - engine: mariadb image: mariadb:11 port: 3306 + health_cmd: 'mariadb-admin ping -h 127.0.0.1 -uroot -p"$MARIADB_ROOT_PASSWORD" --silent' # Exactly ONE service container per matrix run (the image changes)