From 8f908ed2ac21521cc05d01226e9da606276dd2ed Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 19 Dec 2025 10:02:38 +0100 Subject: [PATCH] More tests with new workflow. --- .github/actions/setup-database/action.yml | 11 ++++++++++- .github/workflows/github_action_test_suite.yml | 4 +--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-database/action.yml b/.github/actions/setup-database/action.yml index f3c8598849..3bfce31d1b 100644 --- a/.github/actions/setup-database/action.yml +++ b/.github/actions/setup-database/action.yml @@ -43,9 +43,14 @@ runs: echo "MySQL is ready" shell: bash - - name: Set up MySQL Privileges + - name: Set up MySQL Privileges and Character Set if: ${{ inputs.database == 'mysql' }} run: | + # Set global character set and collation + mysql -u root -proot_password -h 127.0.0.1 mysql <