File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 6060 continue-on-error : true
6161 steps :
6262 - uses : actions/checkout@v2
63+ - run : git fetch --prune --unshallow
6364 - uses : actions/setup-python@v2
6465 with :
6566 python-version : 3.8.x
67+ - uses : actions/cache@v1
68+ with :
69+ path : ~/.cache/pip
70+ key : pip-ubuntu-latest-py3.8-${{ hashFiles('Pipfile.lock') }}
71+ restore-keys : |
72+ pip-ubuntu-latest-py3.8-${{ hashFiles('Pipfile.lock') }}
73+ pip-ubuntu-latest-py3.8-
74+ - uses : actions/cache@v1
75+ with :
76+ path : ~/.local/share/virtualenvs
77+ key : virtualenvs-ubuntu-latest-py3.8-${{ hashFiles('Pipfile.lock') }}
78+ restore-keys : |
79+ virtualenvs-ubuntu-latest-py3.8-${{ hashFiles('Pipfile.lock') }}
80+ virtualenvs-ubuntu-latest-py3.8-
6681 - run : pip install -U -I --pre pipenv pip
6782 - run : make deps-prerelease
6883 - run : make fmt
You can’t perform that action at this time.
0 commit comments