From 30982454d9a8126269542db5d4440d873a373c74 Mon Sep 17 00:00:00 2001 From: Jean-Marie RENOUARD Date: Wed, 22 Mar 2023 16:10:49 +0100 Subject: [PATCH] fix: cwd is incorrect - adding debug info 2 --- .github/workflows/generate_examples.yml | 2 +- .github/workflows/pull_request.yml | 18 ------------------ 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/generate_examples.yml b/.github/workflows/generate_examples.yml index 4c0c001..96f4eee 100644 --- a/.github/workflows/generate_examples.yml +++ b/.github/workflows/generate_examples.yml @@ -55,5 +55,5 @@ jobs: git config --global user.name "Jean-Marie Renouard" git config --global user.email "jmrenouard@gmail.com" git add . - git commit -m "Commit example result for Actions" + git commit -m "Commit example result for employees database for Actions" git push \ No newline at end of file diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 480f79a..f872713 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -31,25 +31,7 @@ jobs: with: mysql root password: "root" mysql version: "8.0" - - name: Injecting credentials - run: | - echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf - - - name: Cloning test_db dataset - run: | - git clone https://github.com/datacharmer/test_db.git - - name: Injecting test_db dataset - run: | - sleep 5s - cd test_db - netstat -ltpn - mysql -e 'select version();' - mysql -e 'CREATE DATABASE data;' - mysql data< ./employees.sql - cd - - rm -rf test_db - # Runs a single command using the runners shell - name: Run help mode run: perl ./mysqltuner.pl --help