We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8de528 commit b19d61cCopy full SHA for b19d61c
.github/workflows/ci-testing.yml
@@ -68,10 +68,12 @@ jobs:
68
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
69
70
- name: Cache pip
71
- - uses: actions/cache@v1
+ uses: actions/cache@v1
72
with:
73
path: ${{ steps.pip-cache.outputs.dir }}
74
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-extra.txt') }}
75
+ restore-keys: |
76
+ ${{ runner.os }}-${{ matrix.python-version }}-pip-
77
78
- name: Install dependencies
79
run: |
0 commit comments