Skip to content

Commit

Permalink
test python container
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Sep 20, 2024
1 parent dd1ae17 commit 4892cc7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,25 @@ jobs:
run: |
black --check --diff .
get-containers:
runs-on: ubuntu-latest
# using `needs` instead of `if` to ensure that same condition applied
needs: [get-matrices]
if: ${{ github.event.inputs.full-matrix == 'true' || github.event_name == 'schedule' }}
outputs:
engine-matrix-output: ${{ steps.get-matrices.outputs.engine-matrix-output }}
host-matrix-output: ${{ steps.get-matrices.outputs.host-matrix-output }}
version-matrix-output: ${{ steps.get-matrices.outputs.version-matrix-output }}

steps:
- uses: actions/checkout@v4
- id: get-matrices
uses: ./.github/workflows/create-test-matrices
with:
language-name: node
run-full-matrix: true
containers: true

test-python-container:
runs-on: ${{ matrix.host.RUNNER }}
needs: [get-containers]
Expand Down

0 comments on commit 4892cc7

Please sign in to comment.