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 8e7f56e commit 0329a5fCopy full SHA for 0329a5f
.github/workflows/windows-ci.yml
@@ -29,6 +29,16 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
32
+ - uses: actions/cache@v2
33
+ with:
34
+ path: ~\AppData\Local\pip\Cache
35
+ # This is like the example but we use ``*requirements.txt`` rather
36
+ # than ``requirements.txt`` because we have multiple requirements
37
+ # files.
38
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }}
39
+ restore-keys: |
40
+ ${{ runner.os }}-pip-
41
+
42
- name: "Install dependencies"
43
run: |
44
python -m pip install --upgrade pip setuptools wheel
0 commit comments