Skip to content

Commit

Permalink
Python matrix v2
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolovison committed Jul 15, 2024
1 parent 7b189de commit 9096059
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/kfp-kubernetes-test-python38.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: kfp kubernetes tests with Python 3.8
name: KFP K8s Platform Tests

on:
push:
Expand All @@ -14,14 +14,23 @@ on:
jobs:
kfp-kubernetes-test-python38:
runs-on: ubuntu-24.04
strategy:
matrix:
python: [
{ 'version': '3.8' },
{ 'version': '3.9' },
{ 'version': '3.10' },
{ 'version': '3.11' },
{ 'version': '3.12' }
]
steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Run tests
# original file is using sudo
Expand Down

0 comments on commit 9096059

Please sign in to comment.