File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,15 @@ jobs:
18
18
19
19
steps :
20
20
- name : Checkout repo
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v3
22
22
23
23
- name : Setup Python
24
- uses : actions/setup-python@v2
24
+ uses : actions/setup-python@v4
25
25
with :
26
+ cache : pip
27
+ cache-dependency-path : |
28
+ setup.py
29
+ requirements-ci.txt
26
30
python-version : 3.8
27
31
28
32
- name : Install OpenBabel
32
36
# https://github.com/openbabel/openbabel/issues/2408#issuecomment-1014466193
33
37
sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
34
38
35
- - name : Cache pip
36
- uses : actions/cache@v2
37
- with :
38
- path : ~/.cache/pip
39
- key : ${{ runner.os }}-pip-${{ hashFiles('requirements-ci.txt', 'setup.py') }}
40
- restore-keys : |
41
- ${{ runner.os }}-pip-
42
-
43
39
- name : Install dependencies
44
40
run : |
45
41
pip install -r requirements-ci.txt
You can’t perform that action at this time.
0 commit comments