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 6c3b444 commit 8f755ddCopy full SHA for 8f755dd
.github/workflows/python-package.yml
@@ -42,10 +42,9 @@ jobs:
42
# This path is specific to Ubuntu
43
path: ${{ steps.pip-cache.outputs.dir }}
44
# Look to see if there is a cache hit for the corresponding requirements file
45
- key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
+ key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}
46
restore-keys: |
47
- ${{ runner.os }}-pip-
48
- ${{ runner.os }}-
+ ${{ runner.os }}-${{ matrix.python-version }}-pip-
49
50
- name: Install dependencies
51
run: |
0 commit comments