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.
2 parents 0749004 + ec06940 commit a743935Copy full SHA for a743935
.github/workflows/ci.yml
@@ -32,6 +32,16 @@ jobs:
32
with:
33
python-version: ${{ matrix.python-version }}
34
35
+ - uses: actions/cache@v2
36
+ with:
37
+ path: ~/.cache/pip
38
+ # This is like the example but we use ``*requirements.txt`` rather
39
+ # than ``requirements.txt`` because we have multiple requirements
40
+ # files.
41
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }}
42
+ restore-keys: |
43
+ ${{ runner.os }}-pip-
44
+
45
- name: "Install dependencies"
46
run: |
47
python -m pip install --upgrade 'pip ${{ matrix.pip-version }}'
0 commit comments