File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 9
9
workflow_dispatch :
10
10
11
11
env :
12
- FORCE_COLOR : " 1"
12
+ FORCE_COLOR : " 1" # Make tools pretty.
13
13
PIP_DISABLE_PIP_VERSION_CHECK : " 1"
14
+ PIP_NO_PYTHON_VERSION_WARNING : " 1"
14
15
15
16
jobs :
16
17
build-package :
26
27
name : tox on ${{ matrix.python-version }}
27
28
needs : build-package
28
29
runs-on : ubuntu-latest
29
-
30
30
strategy :
31
31
fail-fast : false
32
32
matrix :
@@ -38,11 +38,20 @@ jobs:
38
38
- ' 3.12'
39
39
40
40
steps :
41
+ - name : Download pre-built packages
42
+ uses : actions/download-artifact@v3
43
+ with :
44
+ name : Packages
45
+ path : dist
46
+ - run : tar xf dist/*.tar.gz --strip-components=1 # needed for config files
47
+
41
48
- uses : actions/checkout@v3
42
49
- uses : actions/setup-python@v4
43
50
with :
44
51
python-version : ${{ matrix.python-version }}
45
52
allow-prereleases : true
53
+ cache : pip
54
+
46
55
- name : Install dependencies
47
56
run : |
48
57
python -VV
You can’t perform that action at this time.
0 commit comments