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 fde0bf6 commit beb7777Copy full SHA for beb7777
.github/workflows/ci_tests.yml
@@ -27,9 +27,9 @@ jobs:
27
uses: actions/cache@v1
28
with:
29
path: ~/.cache/pip
30
- key: ${{ runner.os }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }}
+ key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }}
31
restore-keys: |
32
- ${{ runner.os }}-
+ ${{ runner.os }}-${{ matrix.python-version }}-
33
34
- name: Install dependencies
35
run: |
0 commit comments