Skip to content

Commit

Permalink
fixed workflows execution
Browse files Browse the repository at this point in the history
  • Loading branch information
alexradzin committed Nov 16, 2023
1 parent ceb1a12 commit 98d7e34
Showing 1 changed file with 12 additions and 20 deletions.
32 changes: 12 additions & 20 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 98d7e34

Please sign in to comment.