File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ concurrency:
17
17
18
18
jobs :
19
19
20
- check- package :
20
+ package :
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- uses : actions/checkout@v3
26
26
27
27
test :
28
28
29
+ needs : [package]
30
+
29
31
runs-on : ${{ matrix.os }}
30
32
31
33
strategy :
@@ -68,14 +70,24 @@ jobs:
68
70
with :
69
71
# Needed to fetch tags, which are required by setuptools-scm.
70
72
fetch-depth : 0
73
+
74
+ - name : Download Package
75
+ uses : actions/download-artifact@v3
76
+ with :
77
+ name : Packages
78
+ path : dist
79
+
71
80
- name : Set up Python
72
81
uses : actions/setup-python@v2
73
82
with :
74
83
python-version : ${{ matrix.python }}
84
+
75
85
- name : Install tox
76
86
run : |
77
87
python -m pip install --upgrade pip
78
88
pip install tox
89
+
79
90
- name : Test
91
+ shell : bash
80
92
run : |
81
- tox -e ${{ matrix.tox_env }}
93
+ tox run -e ${{ matrix.tox_env }} --installpkg `find dist/*.tar.gz`
You can’t perform that action at this time.
0 commit comments