File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
- name : CI - Pull Request
1
+ name : CI - Unit and Integration Tests
2
2
3
3
on :
4
4
pull_request :
49
49
uses : actions/setup-python@v4
50
50
with :
51
51
python-version : ${{ matrix.python-version }}
52
+ - name : Cache pip dependencies
53
+ uses : actions/cache@v3
54
+ with :
55
+ path : ~/.cache/pip
56
+ key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
57
+ restore-keys : |
58
+ ${{ runner.os }}-pip-${{ matrix.python-version }}-
59
+ - name : Install dependencies
60
+ run : pip install -r requirements.txt
52
61
- name : Run integration tests
53
62
run : make ci-test
54
63
83
92
mv py-algo-sdk.docset.tar.gz /tmp
84
93
85
94
- name : Upload docset artifact
86
- uses : actions/upload-artifact@v3
95
+ uses : actions/upload-artifact@v4
87
96
with :
88
97
name : py-algo-sdk-docset
89
98
path : /tmp/py-algo-sdk.docset.tar.gz
You can’t perform that action at this time.
0 commit comments