diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index fdcea3b71..56fecc7b1 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -40,25 +40,17 @@ on: jobs: run-integration-tests1: - runs-on: ubuntu-latest - steps: - - name: Run integration tests v1 - id: integration-tests-v1 - if: ${{ github.event.inputs.run-v1 }} - uses: ./.github/workflows/integration-test-v1.yml - with: - database: ${{ github.event.inputs.database1 }} - engine: ${{ github.event.inputs.engine1 }} - environment: ${{ github.event.inputs.environment }} + if: ${{ github.event.inputs.run-v1 }} + uses: ./.github/workflows/integration-test-v1.yml + with: + database: ${{ github.event.inputs.database1 }} + engine: ${{ github.event.inputs.engine1 }} + environment: ${{ github.event.inputs.environment }} run-integration-tests2: - runs-on: ubuntu-latest - steps: - - name: Run integration tests v2 - id: integration-tests-v2 - if: ${{ github.event.inputs.run-v2 }} - uses: ./.github/workflows/integration-test-v2.yml - with: - database: ${{ github.event.inputs.database2 }} - engine: ${{ github.event.inputs.engine2 }} - environment: ${{ github.event.inputs.environment }} + if: ${{ github.event.inputs.run-v2 }} + uses: ./.github/workflows/integration-test-v2.yml + with: + database: ${{ github.event.inputs.database2 }} + engine: ${{ github.event.inputs.engine2 }} + environment: ${{ github.event.inputs.environment }}