test: Add script and GitHub Action for kfp-kubernetes-library #8
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 kubernetes tests with Python 3.8 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
paths: | |
- '.github/workflows/kfp-kubernetes-test-python38.yaml' | |
- 'sdk/python/**' | |
- 'api/v2alpha1/**' | |
- 'kubernetes_platform/**' | |
jobs: | |
kfp-kubernetes-test-python38: | |
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.8' | |
- name: Run tests | |
# original file is using sudo | |
run: ./test/platform/kfp-kubernetes-execution-tests.sh |