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 e375098 commit c171ccdCopy full SHA for c171ccd
.github/workflows/test.yml
@@ -65,20 +65,10 @@ jobs:
65
uses: actions/setup-python@v4
66
with:
67
python-version: ${{ matrix.python-version }}
68
-
69
- - name: Get pip cache dir
70
- id: pip-cache
71
- run: |
72
- echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
73
74
- - name: Cache
75
- uses: actions/cache@v3
76
- with:
77
- path: ${{ steps.pip-cache.outputs.dir }}
78
- key:
79
- ${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/tox.ini') }}
80
- restore-keys: |
81
- ${{ matrix.python-version }}-v1-
+ cache: 'pip'
+ cache-dependency-path: |
+ setup.py
+ tox.ini
82
83
- name: Install dependencies
84
run: |
0 commit comments