Skip to content

Commit 716ede1

Browse files
committed
fix: remove superfluous checks
1 parent 62670bf commit 716ede1

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

.github/actions/tests/python/action.yml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -35,38 +35,6 @@ runs:
3535
id: checkout
3636
uses: actions/checkout@v4
3737

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-
7038
- name: Cache Python dependencies
7139
uses: actions/cache@v3
7240
with:

0 commit comments

Comments
 (0)