From 50c349f26948001b59682c0fc752a2eb341cead3 Mon Sep 17 00:00:00 2001 From: alexradzin Date: Sun, 31 Mar 2024 12:30:08 +0300 Subject: [PATCH] removed debug prints --- .github/workflows/integration-test-v2.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/integration-test-v2.yml b/.github/workflows/integration-test-v2.yml index b87f2f272..e76ee8c87 100644 --- a/.github/workflows/integration-test-v2.yml +++ b/.github/workflows/integration-test-v2.yml @@ -48,20 +48,6 @@ jobs: distribution: 'zulu' java-version: '17' - - name: Print params - id: print0 - run: echo "DB=${{ inputs.database }}, run_setup=${{ inputs.run_setup }}" - - - name: Print if DB is empty - id: print1 - if: ${{ (inputs.database == '') }} - run: echo "DB is empty ${{ inputs.database }}" - - - name: Print if run_setup true - id: print2 - if: ${{ (inputs.run_setup == true) }} - run: echo "run_setup=${{ inputs.run_setup }}" - - name: Setup database and engine id: setup if: ${{ (inputs.database == '') && (inputs.run_setup == true) }}