From 0f62c25336b43e408653c0c15c941f0a7ff39e89 Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Sat, 30 Nov 2024 10:47:49 +0100 Subject: [PATCH] debug --- .github/workflows/REUSABLE_backend.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/REUSABLE_backend.yml b/.github/workflows/REUSABLE_backend.yml index 006f2a34cf..5354b1b085 100644 --- a/.github/workflows/REUSABLE_backend.yml +++ b/.github/workflows/REUSABLE_backend.yml @@ -198,7 +198,9 @@ jobs: - name: mysql version 1 if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }} - run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION" + run: | + mysql --version + mysql --port 3306 -uroot -ppassword -e "SELECT @@VERSION" - name: Create ${{ matrix.db }} Database if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }} @@ -208,7 +210,7 @@ jobs: - name: mysql version 2 if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }} - run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION" + run: mysql --port 3306 -uroot -ppassword -e "SELECT @@VERSION" - name: Install Composer dependencies run: composer install