From 37c741dfda2f8da481cb371736bae1e503f29d85 Mon Sep 17 00:00:00 2001 From: Ruslan Baidan Date: Sun, 6 Oct 2024 19:10:58 +0200 Subject: [PATCH] Added the mariadb service start. --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b42252e..0afa2a4 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -30,8 +30,8 @@ jobs: mysql user: $MYSQL_USER # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too mysql password: $MYSQL_PASSWORD # Required if "mysql user" exists. The password for the "mysql user" -# - name: Start MySQL (SUDO) -# run: sudo service mysql start + - name: Start MySQL (SUDO) + run: sudo service maraidb start - name: Setup PHP uses: shivammathur/setup-php@v2