From 9868347825ec444fb35c9112c830147788e1b006 Mon Sep 17 00:00:00 2001 From: dvoraen <42825596+dvoraen@users.noreply.github.com> Date: Thu, 1 Dec 2022 14:10:23 -0800 Subject: [PATCH] string fixes for GitHub --- .github/actions/setup-database.yml | 14 +++++++------- .github/workflows/github_action_test_suite.yml | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/actions/setup-database.yml b/.github/actions/setup-database.yml index 3d38a3484a..bd646a0a87 100644 --- a/.github/actions/setup-database.yml +++ b/.github/actions/setup-database.yml @@ -21,7 +21,7 @@ runs: steps: - name: Set up PostgreSQL server - if: ${{ inputs.database == "postgresql" }} + if: ${{ inputs.database == 'postgresql' }} uses: harmon758/postgresql-action@v1 with: postgresql version: "11" @@ -30,7 +30,7 @@ runs: postgresql password: "password" - name: Wait for PostgreSQL to activate - if: ${{ inputs.database == "postgresql" }} + if: ${{ inputs.database == 'postgresql' }} run: | while ! pg_isready -h 127.0.0.1 -q >/dev/null 2>&1 do @@ -41,7 +41,7 @@ runs: shell: bash - name: Set up MySQL server - if: ${{ inputs.database == "mysql" }} + if: ${{ inputs.database == 'mysql' }} uses: mirromutth/mysql-action@v1.1 with: host port: 3306 @@ -55,7 +55,7 @@ runs: mysql root password: root_password - name: Wait for MySQL to activate - if: ${{ inputs.database == "mysql" }} + if: ${{ inputs.database == 'mysql' }} run: | while ! mysqladmin ping -h 127.0.0.1 -u root -proot_password -s >/dev/null 2>&1 do @@ -66,7 +66,7 @@ runs: shell: bash - name: Set up MySQL Privileges - if: ${{ inputs.database == "mysql" }} + if: ${{ inputs.database == 'mysql' }} run: | cat <