Skip to content

Commit 9096059

Browse files
committed
Python matrix v2
1 parent 7b189de commit 9096059

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/kfp-kubernetes-test-python38.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: kfp kubernetes tests with Python 3.8
1+
name: KFP K8s Platform Tests
22

33
on:
44
push:
@@ -14,14 +14,23 @@ on:
1414
jobs:
1515
kfp-kubernetes-test-python38:
1616
runs-on: ubuntu-24.04
17+
strategy:
18+
matrix:
19+
python: [
20+
{ 'version': '3.8' },
21+
{ 'version': '3.9' },
22+
{ 'version': '3.10' },
23+
{ 'version': '3.11' },
24+
{ 'version': '3.12' }
25+
]
1726
steps:
1827
- name: Checkout code
1928
uses: actions/checkout@v4
2029

2130
- name: Set up Python
2231
uses: actions/setup-python@v4
2332
with:
24-
python-version: '3.8'
33+
python-version: ${{matrix.python.version}}
2534

2635
- name: Run tests
2736
# original file is using sudo

0 commit comments

Comments
 (0)