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 312d01a commit e6f5502Copy full SHA for e6f5502
1 file changed
.github/workflows/tests.yaml
@@ -39,19 +39,13 @@ jobs:
39
- uses: actions/setup-python@v2
40
with:
41
python-version: ${{ matrix.python }}
42
+ cache: 'pip'
43
+ cache-dependency-path: 'requirements/*.txt'
44
- name: update pip
45
run: |
46
pip install -U wheel
47
pip install -U setuptools
48
python -m pip install -U pip
- - name: get pip cache dir
- id: pip-cache
49
- run: echo "::set-output name=dir::$(pip cache dir)"
50
- - name: cache pip
51
- uses: actions/cache@v2
52
- with:
53
- path: ${{ steps.pip-cache.outputs.dir }}
54
- key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('requirements/*.txt') }}
55
- name: cache mypy
56
uses: actions/cache@v2
57
0 commit comments