We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b189de commit 9096059Copy full SHA for 9096059
.github/workflows/kfp-kubernetes-test-python38.yaml
@@ -1,4 +1,4 @@
1
-name: kfp kubernetes tests with Python 3.8
+name: KFP K8s Platform Tests
2
3
on:
4
push:
@@ -14,14 +14,23 @@ on:
14
jobs:
15
kfp-kubernetes-test-python38:
16
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
+ ]
26
steps:
27
- name: Checkout code
28
uses: actions/checkout@v4
29
30
- name: Set up Python
31
uses: actions/setup-python@v4
32
with:
- python-version: '3.8'
33
+ python-version: ${{matrix.python.version}}
34
35
- name: Run tests
36
# original file is using sudo
0 commit comments