diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-24 06:16:06 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-24 06:39:57 -0500 |
| commit | c1ac82f150b4ac05b8cbf2dbc11cd35986559e1c (patch) | |
| tree | 0a92cd9b415d793874a733a92866e2ed7b0bed37 /.github/workflows/coverage.yml | |
| parent | ec0d4104d381c19f34255279c928637082ca80cd (diff) | |
| download | python-coveragepy-git-c1ac82f150b4ac05b8cbf2dbc11cd35986559e1c.tar.gz | |
build: use new setup-python caching
Diffstat (limited to '.github/workflows/coverage.yml')
| -rw-r--r-- | .github/workflows/coverage.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b751eebc..8ab96b8e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -60,6 +60,8 @@ jobs: uses: "actions/setup-python@v2" with: python-version: "${{ matrix.python-version }}" + cache: pip + cache-dependency-path: 'requirements/*.pip' - name: "Install dependencies" run: | @@ -97,6 +99,8 @@ jobs: uses: "actions/setup-python@v2" with: python-version: "3.8" + cache: pip + cache-dependency-path: 'requirements/*.pip' - name: "Install dependencies" run: | |
