From 4864c4f01a145f32113b8794499fd7706d857400 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 1 Feb 2022 06:50:38 -0500 Subject: [PATCH] build: pip cache works again --- .github/workflows/coverage.yml | 8 ++++---- .github/workflows/testsuite.yml | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 34e04916a..41ce3dde9 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 df7a41314..c9665de2a 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: |