summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-02-01 06:50:38 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-02-06 17:45:00 -0500
commit4864c4f01a145f32113b8794499fd7706d857400 (patch)
tree58fb21bca80f53c4dd7bc258a0635f6b5e30d4f5 /.github/workflows
parent7e85e782bc24fa487d77aff3356eaf04db764d21 (diff)
downloadpython-coveragepy-git-4864c4f01a145f32113b8794499fd7706d857400.tar.gz
build: pip cache works again
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/coverage.yml8
-rw-r--r--.github/workflows/testsuite.yml5
2 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 34e04916..41ce3dde 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -59,8 +59,8 @@ jobs:
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- #cache: pip
- #cache-dependency-path: 'requirements/*.pip'
+ cache: pip
+ cache-dependency-path: 'requirements/*.pip'
- name: "Install dependencies"
run: |
@@ -96,8 +96,8 @@ jobs:
uses: "actions/setup-python@v2"
with:
python-version: "3.8"
- #cache: pip
- #cache-dependency-path: 'requirements/*.pip'
+ cache: pip
+ cache-dependency-path: 'requirements/*.pip'
- name: "Install dependencies"
run: |
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index df7a4131..c9665de2 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -55,8 +55,9 @@ jobs:
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- #cache: pip
- #cache-dependency-path: 'requirements/*.pip'
+ # Can we start using the pip cache again?
+ cache: pip
+ cache-dependency-path: 'requirements/*.pip'
- name: "Install dependencies"
run: |