File tree 1 file changed +18
-0
lines changed 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 15
15
uses : actions/setup-python@v2
16
16
with :
17
17
python-version : ${{ matrix.python-version }}
18
+ - uses : actions/cache@v2
19
+ with :
20
+ path : ~/.cache/pip
21
+ key : ${{ runner.os }}-pip-${{ matrix.python-version }}-lint-${{ hashFiles('./dev-requirements.txt') }}
22
+ restore-keys : |
23
+ ${{ runner.os }}-pip-${{ matrix.python-version }}-lint-
18
24
- name : Install dependencies
19
25
run : |
20
26
pip install -U pip setuptools wheel
36
42
uses : actions/setup-python@v2
37
43
with :
38
44
python-version : ${{ matrix.python-version }}
45
+ - uses : actions/cache@v2
46
+ with :
47
+ path : ~/.cache/pip
48
+ key : ${{ runner.os }}-pip-${{ matrix.python-version }}-test-${{ hashFiles('./dev-requirements.txt') }}
49
+ restore-keys : |
50
+ ${{ runner.os }}-pip-${{ matrix.python-version }}-test-
39
51
- name : Install dependencies
40
52
run : |
41
53
pip install -U pip setuptools wheel
58
70
uses : actions/setup-python@v2
59
71
with :
60
72
python-version : ${{ matrix.python-version }}
73
+ - uses : actions/cache@v2
74
+ with :
75
+ path : ~/.cache/pip
76
+ key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.django-version }}-typecheck-${{ hashFiles('./dev-requirements.txt') }}
77
+ restore-keys : |
78
+ ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.django-version }}-typecheck-
61
79
- name : Install dependencies
62
80
run : |
63
81
pip install -U pip setuptools wheel
You can’t perform that action at this time.
0 commit comments