From b51141d1a34782d3f2d32fcb144132db5d808800 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 12 Oct 2020 21:09:19 +0300 Subject: [PATCH] Fix cache --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 880ece75..cf9d25eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,10 +97,10 @@ jobs: - name: Cache PyPI uses: actions/cache@v2 with: - key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('requirements/*.txt') }} + key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-{{ matrix.no-extensions }}-${{ hashFiles('requirements/*.txt') }} path: ${{ steps.pip-cache.outputs.dir }} restore-keys: | - pip-ci-${{ runner.os }}-${{ matrix.pyver }}- + pip-ci-${{ runner.os }}-${{ matrix.pyver }}-{{ matrix.no-extensions }}- - name: Install cython if: ${{ matrix.no-extensions == '' }} uses: py-actions/py-dependency-install@v2