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 6c94d4c commit 0316e1fCopy full SHA for 0316e1f
.github/workflows/ci.yml
@@ -10,6 +10,7 @@ env:
10
PIP_DISABLE_PIP_VERSION_CHECK: 1
11
PYTHONUNBUFFERED: 1
12
PYTHONIOENCODING: utf-8
13
+ CACHE_EPOCH: 0
14
15
defaults:
16
run:
@@ -30,6 +31,16 @@ jobs:
30
31
uses: actions/setup-node@v2
32
with:
33
node: 14.x
34
+ - name: Cache pip packages
35
+ uses: actions/cache@v1
36
+ with:
37
+ path: ~/.cache/pip
38
+ key: |
39
+ ${{ env.CACHE_EPOCH }}-${{ runner.os }}-pip-build-${{ hashFiles('setup.py', 'pyproject.toml') }}
40
+ restore-keys: |
41
+ ${{ env.CACHE_EPOCH }}-${{ runner.os }}-pip-build-
42
43
+ - name: Cache npm packages
44
- name: Install installation dependencies
45
run: |
46
set -eux
0 commit comments