13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- python-version : [3.7, 3.8, 3.9, " 3.10" ]
16
+ python-version : [3.7, 3.8, 3.9, 3.10]
17
17
18
18
steps :
19
19
- uses : actions/checkout@v2
@@ -22,11 +22,11 @@ jobs:
22
22
with :
23
23
python-version : ${{ matrix.python-version }}
24
24
25
- - run : pip install -U setuptools
25
+ - run : pip install -U setuptools wheel
26
26
27
- - run : pip install -r requirements.txt
27
+ - run : pip install --no-cache-dir - r requirements.txt
28
28
29
- - run : pip install -e .[dev]
29
+ - run : pip install --no-cache-dir - e .[dev]
30
30
31
31
- run : pytest -v
32
32
@@ -44,12 +44,12 @@ jobs:
44
44
with :
45
45
python-version : 3.9
46
46
47
- - run : pip install --upgrade setuptools
47
+ - run : pip install --upgrade setuptools wheel
48
48
49
- - run : pushd examples/aml && pip install -r requirements.txt && popd
49
+ - run : pushd examples/aml && pip install --no-cache-dir - r requirements.txt && popd
50
50
51
- - run : pushd examples/yoti_example_django && pip install --upgrade pip && pip install -r requirements.txt && popd
51
+ - run : pushd examples/yoti_example_django && pip install --no-cache-dir -- upgrade pip && pip install --no-cache-dir -r requirements.txt && popd
52
52
53
- - run : pushd examples/yoti_example_flask && pip install -r requirements.txt && popd
53
+ - run : pushd examples/yoti_example_flask && pip install --no-cache-dir - r requirements.txt && popd
54
54
55
- - run : pushd examples/doc_scan && pip install -r requirements.txt && popd
55
+ - run : pushd examples/doc_scan && pip install --no-cache-dir - r requirements.txt && popd
0 commit comments