File tree 1 file changed +14
-10
lines changed
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,25 @@ jobs:
37
37
with :
38
38
python-version : " 3.8"
39
39
40
+ - name : Checkout
41
+ uses : actions/checkout@v2
42
+
43
+ - name : Install template app
44
+ run : |
45
+ git clone git://github.com/cesium-ml/baselayer_template_app
46
+ cp -rf baselayer baselayer_template_app/
47
+
40
48
- uses : actions/cache@v2
41
49
with :
42
50
path : |
43
- ~/.cache
44
- ~/.local
45
51
~/.npm
46
- key : ${{ runner.os }}-${{ hashFiles('**/lockfiles ') }}
52
+ key : ${{ runner.os }}-npm- ${{ hashFiles('**/package.json ') }}
47
53
48
- - name : Checkout
49
- uses : actions/checkout@v2
54
+ - uses : actions/cache@v2
55
+ with :
56
+ path : |
57
+ ~/.cache/pip
58
+ key : ${{ runner.os }}-${{ hashFiles('**/requirements*.txt') }}
50
59
51
60
- name : Install system dependencies
52
61
run : |
85
94
pip install --upgrade selenium
86
95
python -c "import selenium; print(f'Selenium {selenium.__version__}')"
87
96
88
- - name : Install template app
89
- run : |
90
- git clone git://github.com/cesium-ml/baselayer_template_app
91
- cp -rf baselayer baselayer_template_app/
92
-
93
97
- name : Write configuration & build DB
94
98
run : |
95
99
cd baselayer_template_app
You can’t perform that action at this time.
0 commit comments