Skip to content

Commit

Permalink
add push trigger to open source tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vicilliar authored Dec 5, 2024
1 parent f209dc4 commit 53479a7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/open-source-unit-tests-all-python-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
image_tag: ${{ inputs.image_tag }}

0 comments on commit 53479a7

Please sign in to comment.