From 4892cc78999609152f3d72c10a6f9e071737ea67 Mon Sep 17 00:00:00 2001 From: Yury-Fridlyand Date: Fri, 20 Sep 2024 09:35:19 -0700 Subject: [PATCH] test python container Signed-off-by: Yury-Fridlyand --- .github/workflows/python.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 2c6bef318d..35a658fef7 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -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]