chore: fix CI by adding a dependency of python/sdk for the e2e-test #169
Workflow file for this run
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 Isort Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
paths: | |
- 'sdk/python/**' | |
- 'test/presubmit-isort-sdk.sh' | |
- '.github/workflows/sdk-isort.yml' | |
jobs: | |
test-isort-kfp-sdk: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Run isort tests | |
run: ./test/presubmit-isort-sdk.sh |