From 856ef452f3fc53a5d8fe0a04ad6c1be0432b67fe Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Tue, 14 Mar 2023 19:55:57 +0000 Subject: [PATCH] fix: try github actions MySQL --- .github/workflows/exec.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/exec.yml b/.github/workflows/exec.yml index 1a42670..82c6c59 100644 --- a/.github/workflows/exec.yml +++ b/.github/workflows/exec.yml @@ -23,16 +23,19 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - uses: mirromutth/mysql-action@v1.1 + - name: Setup MySQL Tuner repository + uses: actions/checkout@v3 + + - name: Set up MySQL + uses: mirromutth/mysql-action@v1.1 with: - mysql root password: root - + mysql root password: root + - name: Cloning test_db dataset run: | git clone https://github.com/datacharmer/test_db.git cd test_db - mysql < ./employees.sql + mysql -uroot -proot < ./employees.sql cd - rm -rf test_db # Runs a single command using the runners shell