Skip to content

Commit

Permalink
kubeflow-pipelines-samples-v2-gha - WIP added workflow
Browse files Browse the repository at this point in the history
Signed-off-by: hbelmiro <[email protected]>
  • Loading branch information
hbelmiro committed Jul 29, 2024
1 parent 5ee73cd commit c2ea64f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/kfp-samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: KFP Samples

on:
push:
branches:
- master
pull_request:
paths:
- 'samples/**'
- 'backend/src/v2/**'
- '.github/workflows/kfp-samples.yml'

jobs:
samples:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Create KFP cluster
uses: ./.github/actions/kfp-cluster

- name: Forward API port
run: ./scripts/deploy/github/forward-port.sh "kubeflow" "ml-pipeline" 8888 8888

- name: Run Samples Tests
run: |
./backend/src/v2/test/sample-test.sh

0 comments on commit c2ea64f

Please sign in to comment.