We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855ea68 commit cb3a5e5Copy full SHA for cb3a5e5
.github/workflows/tests.yml
@@ -27,6 +27,7 @@ jobs:
27
28
- name: Set up Python ${{ matrix.pyv }}
29
uses: actions/setup-python@v4
30
+ id: setup-python
31
with:
32
python-version: ${{ matrix.pyv }}
33
cache: pip
@@ -42,7 +43,7 @@ jobs:
42
43
uses: actions/cache@v3
44
45
path: .nox
- key: ${{ runner.os }}-${{ matrix.pyv }}-${{ hashFiles('noxfile.py') }}_nox3
46
+ key: ${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('noxfile.py') }}-nox
47
48
- name: cache pre-commit hook
49
0 commit comments