diff --git a/.github/workflows/open-source-unit-tests-all-python-versions.yml b/.github/workflows/open-source-unit-tests-all-python-versions.yml index ba84a53b..342ac2b9 100644 --- a/.github/workflows/open-source-unit-tests-all-python-versions.yml +++ b/.github/workflows/open-source-unit-tests-all-python-versions.yml @@ -43,7 +43,7 @@ jobs: Test-Python-3-8: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.8' image_registry_location: ${{ inputs.image_registry_location }} @@ -53,7 +53,7 @@ jobs: Test-Python-3-9: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.9' image_registry_location: ${{ inputs.image_registry_location }} @@ -63,7 +63,7 @@ jobs: Test-Python-3-10: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.10' image_registry_location: ${{ inputs.image_registry_location }} @@ -73,7 +73,7 @@ jobs: Test-Python-3-11: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.11' image_registry_location: ${{ inputs.image_registry_location }} @@ -83,7 +83,7 @@ jobs: Test-Python-3-12: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.12' image_registry_location: ${{ inputs.image_registry_location }} @@ -93,9 +93,9 @@ jobs: Test-Python-3-13: uses: ./.github/workflows/open-source-unit-tests.yml secrets: inherit - if: github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' + if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.review.state == 'approved' with: python_version: '3.13' image_registry_location: ${{ inputs.image_registry_location }} image_repo: ${{ inputs.image_repo }} - image_tag: ${{ inputs.image_tag }} \ No newline at end of file + image_tag: ${{ inputs.image_tag }}