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 3e4f382 commit ff548f2Copy full SHA for ff548f2
.github/workflows/gh-pages.yaml
@@ -25,22 +25,8 @@ jobs:
25
uses: actions/setup-python@v4
26
with:
27
python-version: '3.9'
28
+ cache: pip
29
- - name: Upgrade pip
30
- run: |
31
- # pip >= 20.1 so we can use ``pip cache dir``
32
- python3 -m pip install --upgrade pip
33
- - name: Get pip cache dir
34
- id: pip-cache
35
- run: echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
36
-
37
- - name: Cache dependencies
38
- uses: actions/cache@v3
39
- with:
40
- path: ${{ steps.pip-cache.outputs.dir }}
41
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
42
- restore-keys: |
43
- ${{ runner.os }}-pip-
44
- name: Install dependencies
45
run: python3 -m pip install -U -e ".[all]"
46
0 commit comments