Skip to content

Commit

Permalink
Merge pull request #52 from DharmitD/sdk-tests
Browse files Browse the repository at this point in the history
Create kfp-sdk-tests.yml
  • Loading branch information
DharmitD authored Jul 17, 2024
2 parents 785c0b5 + 566a218 commit 2eafd13
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/kfp-sdk-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: KFP SDK Tests

on:
push:
branches: [master]

pull_request:
paths:
- '.github/workflows/kfp-sdk-tests.yml'
- 'sdk/**'
- 'test/presubmit-tests-sdk.sh'

workflow_dispatch:

jobs:
sdk-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

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

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Run SDK Tests
run: |
chmod +x ./test/presubmit-tests-sdk.sh
./test/presubmit-tests-sdk.sh

0 comments on commit 2eafd13

Please sign in to comment.