Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT committed Oct 10, 2023
1 parent a925eb6 commit 3507f0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ jobs:
mv kubectl-kuttl /usr/local/bin
- name: Run Scheduling Gates Integration Tests
if: ${{ inputs.scheduling-gates == 'gates_on' }} && ${{ inputs.allowed-namespaces == 'allowed_ns_off' }}
if: inputs.scheduling-gates == 'gates_on' && inputs.allowed-namespaces == 'allowed_ns_off'
working-directory: .
run: make integration-test-scheduling-gates

- name: Run Allowed namespaces Integration Tests
if: ${{ inputs.allowed-namespaces == 'allowed_ns_on' }}
if: inputs.allowed-namespaces == 'allowed_ns_on'
working-directory: .
run: make integration-test-allowed-namespaces

- name: Run Integration Tests
if: ${{ inputs.allowed-namespaces == 'allowed_ns_off' }}
if: inputs.allowed-namespaces == 'allowed_ns_off'
working-directory: .
run: make integration-test

Expand Down

0 comments on commit 3507f0e

Please sign in to comment.