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 1cc04bf commit 7c5305aCopy full SHA for 7c5305a
.github/workflows/ci_tests.yml
@@ -23,10 +23,15 @@ jobs:
23
with:
24
python-version: ${{ matrix.python-version }}
25
26
+ - name: Get pip cache directory
27
+ id: pip_cache_dir
28
+ run: |
29
+ echo "::set-output name=dir::$(pip cache dir)"
30
+
31
- name: Cache
32
uses: actions/cache@v1
33
- path: ~/.cache/pip
34
+ path: ${{ steps.pip_cache_dir.outputs.dir }}
35
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }}
36
restore-keys: |
37
${{ runner.os }}-${{ matrix.python-version }}-
0 commit comments