Skip to content

Commit

Permalink
ci: check integration test as a string instead of boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity committed Oct 30, 2024
1 parent e960af0 commit daf4682
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
run: make unit-tests-coverage

build-and-integration-test:
if: ${{ inputs.integration-tests && github.ref_name != 'master' }}
if: ${{ inputs.integration-tests == 'true' && github.ref_name != 'master' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand All @@ -116,7 +116,7 @@ jobs:
run: make integration-tests

integration-test-with-latest-image:
if: ${{ inputs.integration-tests && github.ref_name == 'master' }}
if: ${{ inputs.integration-tests == 'true' && github.ref_name == 'master' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down

0 comments on commit daf4682

Please sign in to comment.