Commit 69ef6122 authored by Sviatoslav Sydorenko's avatar Sviatoslav Sydorenko

Cache Pip dists in GH Actions CI/CD workflows

parent 5a5adf2d
......@@ -33,6 +33,14 @@ jobs:
uses: actions/setup-python@v1.1.1
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }}-${{ hashFiles('tests/requirements.txt') }}-${{ hashFiles('tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Upgrade pip/setuptools/wheel
run: >-
python
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment