Skip to content

Commit 4864c4f

Browse files
committed
build: pip cache works again
1 parent 7e85e78 commit 4864c4f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/coverage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
uses: "actions/setup-python@v2"
6060
with:
6161
python-version: "${{ matrix.python-version }}"
62-
#cache: pip
63-
#cache-dependency-path: 'requirements/*.pip'
62+
cache: pip
63+
cache-dependency-path: 'requirements/*.pip'
6464

6565
- name: "Install dependencies"
6666
run: |
@@ -96,8 +96,8 @@ jobs:
9696
uses: "actions/setup-python@v2"
9797
with:
9898
python-version: "3.8"
99-
#cache: pip
100-
#cache-dependency-path: 'requirements/*.pip'
99+
cache: pip
100+
cache-dependency-path: 'requirements/*.pip'
101101

102102
- name: "Install dependencies"
103103
run: |

.github/workflows/testsuite.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ jobs:
5555
uses: "actions/setup-python@v2"
5656
with:
5757
python-version: "${{ matrix.python-version }}"
58-
#cache: pip
59-
#cache-dependency-path: 'requirements/*.pip'
58+
# Can we start using the pip cache again?
59+
cache: pip
60+
cache-dependency-path: 'requirements/*.pip'
6061

6162
- name: "Install dependencies"
6263
run: |

0 commit comments

Comments
 (0)