Skip to content

Commit

Permalink
chore: add shell
Browse files Browse the repository at this point in the history
  • Loading branch information
lpm0073 committed Nov 17, 2023
1 parent 0d3135f commit e307fec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/tests/python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,31 @@ runs:
uses: actions/checkout@v4

- name: Check for openai in requirements
shell: bash
run: |
if ! grep -q "openai" ./requirements.txt; then
echo "openai not found in requirements.txt" >&2
exit 1
fi
- name: Check for langchain in requirements
shell: bash
run: |
if ! grep -q "langchain" ./requirements.txt; then
echo "langchain not found in requirements.txt" >&2
exit 1
fi
- name: Check for langchain-experimental in requirements
shell: bash
run: |
if ! grep -q "langchain-experimental" ./requirements.txt; then
echo "langchain-experimental not found in requirements.txt" >&2
exit 1
fi
- name: Check for pinecone-client in requirements
shell: bash
run: |
if ! grep -q "pinecone-client" ./requirements.txt; then
echo "pinecone-client not found in requirements.txt" >&2
Expand Down

0 comments on commit e307fec

Please sign in to comment.