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 6cb33fe commit bb29e9aCopy full SHA for bb29e9a
.github/workflows/test.yml
@@ -23,15 +23,8 @@ jobs:
23
uses: actions/setup-python@v4
24
with:
25
python-version: 3.9
26
-
27
- - name: pip cache
28
- uses: actions/cache@v3
29
- with:
30
- path: ~/.cache/pip
31
- key:
32
- ${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('noxfile.py') }}
33
- restore-keys: |
34
- ${{ matrix.os }}-${{ matrix.python-version }}-
+ cache: 'pip'
+ cache-dependency-path: 'requirements.txt'
35
36
- name: Install dependencies
37
run: |
0 commit comments