feat(kubernetes_platform): add data_source parameter to CreatePVC. Fixes #11420 #5154
Workflow file for this run
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 Backend Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'backend/**' | |
| - 'test/presubmit-backend-test.sh' | |
| - '!**/*.md' | |
| - '!**/OWNERS' | |
| jobs: | |
| backend-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run Backend Tests | |
| env: | |
| GIT_BRANCH: ${{ github.head_ref || github.ref_name }} | |
| GIT_REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
| run: | | |
| ./test/presubmit-backend-test.sh |