fix(backend): fixes DAG status update to reflect completion of all ta… #744
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KFP SDK Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'sdk/**' | |
- 'test/presubmit-tests-sdk.sh' | |
- '.github/workflows/kfp-sdk-tests.yml' | |
jobs: | |
sdk-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run SDK Tests | |
run: | | |
./test/presubmit-tests-sdk.sh |