File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed
.github/actions/tests/python Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change 35
35
id : checkout
36
36
uses : actions/checkout@v4
37
37
38
- - name : Check for openai in requirements
39
- shell : bash
40
- run : |
41
- if ! grep -q "openai" ./requirements/local.txt; then
42
- echo "openai not found in requirements/local.txt" >&2
43
- exit 1
44
- fi
45
-
46
- - name : Check for langchain in requirements
47
- shell : bash
48
- run : |
49
- if ! grep -q "langchain" ./requirements/local.txt; then
50
- echo "langchain not found in requirements/local.txt" >&2
51
- exit 1
52
- fi
53
-
54
- - name : Check for langchain-experimental in requirements
55
- shell : bash
56
- run : |
57
- if ! grep -q "langchain-experimental" ./requirements/local.txt; then
58
- echo "langchain-experimental not found in requirements/local.txt" >&2
59
- exit 1
60
- fi
61
-
62
- - name : Check for pinecone-client in requirements
63
- shell : bash
64
- run : |
65
- if ! grep -q "pinecone-client" ./requirements/local.txt; then
66
- echo "pinecone-client not found in requirements/local.txt" >&2
67
- exit 1
68
- fi
69
-
70
38
- name : Cache Python dependencies
71
39
uses : actions/cache@v3
72
40
with :
You can’t perform that action at this time.
0 commit comments