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 b68f23e commit f7ff8d3Copy full SHA for f7ff8d3
1 file changed
.github/workflows/python-app.yml
@@ -20,6 +20,13 @@ jobs:
20
uses: actions/setup-python@v2
21
with:
22
python-version: 3.8
23
+ - name: Caches pip
24
+ uses: actions/cache@v1
25
+ with:
26
+ path: ~/.cache/pip
27
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
28
+ restore-keys: |
29
+ ${{ runner.os }}-pip-
30
- name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
0 commit comments