Skip to content

Commit

Permalink
Fix workflow to ensure units run by default before integration
Browse files Browse the repository at this point in the history
Signed-off-by: João Pereira <[email protected]>
  • Loading branch information
joaopapereira committed Nov 1, 2024
1 parent 75d6f9c commit ef84164
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
if: ${{ inputs.run_unit_tests == 'true' }}
if: ${{ inputs.run_unit_tests }}
with:
ref: ${{needs.get-sha.outputs.gitRef}}
- name: Set Up Go
uses: actions/setup-go@v5
if: ${{ inputs.run_unit_tests == 'true' }}
if: ${{ inputs.run_unit_tests }}
with:
go-version-file: go.mod
check-latest: true
- name: Run Units
if: ${{ inputs.run_unit_tests == 'true' }}
if: ${{ inputs.run_unit_tests }}
run: make units

claim-env:
Expand Down

0 comments on commit ef84164

Please sign in to comment.