File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -25,25 +25,30 @@ jobs:
25
25
name : python-package-distributions
26
26
path : dist/
27
27
test :
28
+ strategy :
29
+ matrix :
30
+ python-version :
31
+ - " 3.10"
32
+ - " 3.11"
33
+ - " 3.12"
34
+ - " 3.13"
28
35
name : Test Python 📦
29
36
needs :
30
37
- build
31
38
runs-on : ubuntu-latest
32
39
steps :
40
+ - uses : actions/checkout@v4
41
+ with :
42
+ fetch-depth : 0
43
+ sparse-checkout : test
33
44
- name : Download all the dists
34
45
uses : actions/download-artifact@v4
35
46
with :
36
47
name : python-package-distributions
37
48
path : dist
38
- - run : ls -lah dist
39
- - uses : actions/checkout@v4
40
- with :
41
- fetch-depth : 0
42
- sparse-checkout : test
43
- - run : ls -lah dist
44
49
- uses : actions/setup-python@v5
45
50
with :
46
- python-version : 3.12
51
+ python-version : ${{ matrix.python-version }}
47
52
cache : ' pip'
48
53
- name : Install
49
54
run : |
You can’t perform that action at this time.
0 commit comments