Skip to content

Commit

Permalink
Create hello_world_example.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sefgsefg committed Aug 25, 2024
1 parent a3adf94 commit 1c1dbca
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/hello_world_example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: hello_world_example

on:
workflow_dispatch:

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: |
./hello/hello_world.sh

0 comments on commit 1c1dbca

Please sign in to comment.