fix(frontend): Detailed information of nodes is not displayed when cl… #468
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-kubernetes library tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
paths: | |
- '.github/workflows/kfp-kubernetes-library-test.yml' | |
- 'sdk/python/**' | |
- 'api/v2alpha1/**' | |
- 'kubernetes_platform/**' | |
- 'test/presubmit-test-kfp-kubernetes-library.sh' | |
jobs: | |
kfp-kubernetes-library-test: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python: [ | |
{ 'version': '3.9' }, | |
{ 'version': '3.10' }, | |
{ 'version': '3.11' }, | |
{ 'version': '3.12' }, | |
{ 'version': '3.13' } | |
] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{matrix.python.version}} | |
- name: Run tests | |
run: ./test/presubmit-test-kfp-kubernetes-library.sh |