|
99 | 99 | ci-image-build: ${{ steps.selective-checks.outputs.ci-image-build }} |
100 | 100 | prod-image-build: ${{ steps.selective-checks.outputs.prod-image-build }} |
101 | 101 | docs-build: ${{ steps.selective-checks.outputs.docs-build }} |
102 | | - mypy-folders: ${{ steps.selective-checks.outputs.mypy-folders }} |
| 102 | + mypy-checks: ${{ steps.selective-checks.outputs.mypy-checks }} |
103 | 103 | needs-mypy: ${{ steps.selective-checks.outputs.needs-mypy }} |
104 | 104 | needs-helm-tests: ${{ steps.selective-checks.outputs.needs-helm-tests }} |
105 | 105 | needs-api-tests: ${{ steps.selective-checks.outputs.needs-api-tests }} |
@@ -298,7 +298,7 @@ jobs: |
298 | 298 | runs-on-as-json-docs-build: ${{ needs.build-info.outputs.runs-on-as-json-docs-build }} |
299 | 299 | image-tag: ${{ needs.build-info.outputs.image-tag }} |
300 | 300 | needs-mypy: ${{ needs.build-info.outputs.needs-mypy }} |
301 | | - mypy-folders: ${{ needs.build-info.outputs.mypy-folders }} |
| 301 | + mypy-checks: ${{ needs.build-info.outputs.mypy-checks }} |
302 | 302 | python-versions-list-as-string: ${{ needs.build-info.outputs.python-versions-list-as-string }} |
303 | 303 | branch: ${{ needs.build-info.outputs.default-branch }} |
304 | 304 | canary-run: ${{ needs.build-info.outputs.canary-run }} |
@@ -644,6 +644,24 @@ jobs: |
644 | 644 | ( needs.build-info.outputs.run-kubernetes-tests == 'true' || |
645 | 645 | needs.build-info.outputs.needs-helm-tests == 'true') |
646 | 646 |
|
| 647 | + tests-task-sdk: |
| 648 | + name: "Task SDK tests" |
| 649 | + uses: ./.github/workflows/task-sdk-tests.yml |
| 650 | + needs: [build-info, wait-for-ci-images] |
| 651 | + permissions: |
| 652 | + contents: read |
| 653 | + packages: read |
| 654 | + secrets: inherit |
| 655 | + with: |
| 656 | + runs-on-as-json-default: ${{ needs.build-info.outputs.runs-on-as-json-default }} |
| 657 | + image-tag: ${{ needs.build-info.outputs.image-tag }} |
| 658 | + default-python-version: ${{ needs.build-info.outputs.default-python-version }} |
| 659 | + python-versions: ${{ needs.build-info.outputs.python-versions }} |
| 660 | + run-task-sdk-tests: ${{ needs.build-info.outputs.run-task-sdk-tests }} |
| 661 | + if: > |
| 662 | + ( needs.build-info.outputs.run-task-sdk-tests == 'true' || |
| 663 | + needs.build-info.outputs.run-tests == 'true') |
| 664 | +
|
647 | 665 | finalize-tests: |
648 | 666 | name: Finalize tests |
649 | 667 | permissions: |
|
0 commit comments