diff --git a/.github/workflows/check_compatibility.yml b/.github/workflows/check_compatibility.yml index d4aa3a7..f6e7aec 100644 --- a/.github/workflows/check_compatibility.yml +++ b/.github/workflows/check_compatibility.yml @@ -23,9 +23,10 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' + test: name: test - needs: [ build ] + needs: [build] uses: ./.github/workflows/_test.yml secrets: inherit with: @@ -33,31 +34,29 @@ jobs: compile-integration-tests: name: compile integration test - needs: [ build ] + needs: [build] uses: ./.github/workflows/_compile_integration_test.yml secrets: inherit with: working-directory: ${{ inputs.working-directory }} - + integration_test: name: integration test - needs: [ build ] + needs: [build] uses: ./.github/workflows/_integration_test.yml secrets: inherit with: working-directory: ${{ inputs.working-directory }} - ci_success: name: "CI Success" - needs: [build, test, compile-integration-tests] - if: | - always() + needs: [build, test, compile-integration-tests, integration_test] + if: always() runs-on: ubuntu-latest env: JOBS_JSON: ${{ toJSON(needs) }} RESULTS_JSON: ${{ toJSON(needs.*.result) }} - EXIT_CODE: ${{!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && '0' || '1'}} + EXIT_CODE: ${{ !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && '0' || '1' }} steps: - name: "CI Success" run: |