Skip to content

Commit c21ddaa

Browse files
committed
Updated github actions
1 parent ad28fd9 commit c21ddaa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10"]
16+
python-version: [3.7, 3.8, 3.9, 3.10]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -22,11 +22,11 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25-
- run: pip install -U setuptools
25+
- run: pip install -U setuptools wheel
2626

27-
- run: pip install -r requirements.txt
27+
- run: pip install --no-cache-dir -r requirements.txt
2828

29-
- run: pip install -e .[dev]
29+
- run: pip install --no-cache-dir -e .[dev]
3030

3131
- run: pytest -v
3232

@@ -44,12 +44,12 @@ jobs:
4444
with:
4545
python-version: 3.9
4646

47-
- run: pip install --upgrade setuptools
47+
- run: pip install --upgrade setuptools wheel
4848

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
5050

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
5252

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
5454

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

Comments
 (0)