Merge remote-tracking branch 'upstream/stable' #28
This file contains hidden or 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 Runtime Code Tests | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- stable | |
- 'rhoai-*' | |
pull_request: | |
paths: | |
- '.github/workflows/kfp-sdk-runtime-tests.yml' | |
- 'sdk/python/**' | |
- 'test/presubmit-test-kfp-runtime-code.sh' | |
- '!**/*.md' | |
- '!**/OWNERS' | |
jobs: | |
kfp-runtime-tests: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python: ['3.9', '3.13'] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Run KFP Runtime Code Tests | |
run: | | |
export PULL_NUMBER="${{ github.event.inputs.pull_number || github.event.pull_request.number }}" | |
export REPO_NAME="${{ github.repository }}" | |
./test/presubmit-test-kfp-runtime-code.sh |