"git@developer.sourcefind.cn:orangecat/ollama.git" did not exist on "354ad9254ee64ada621f66192cf4686af8a2a6bb"
Commit a62b93cd authored by quyuan's avatar quyuan
Browse files

update requeirements

parent 4a823359
......@@ -33,8 +33,11 @@ jobs:
run: |
changed_files=$(git diff --name-only -r HEAD~1 HEAD)
echo $changed_files
if [[ $changed_files =~ "requirements.txt" ]] || [[ $changed_files =~ "requirements-qa.txt" ]]; then
if [[ $changed_files =~ "requirements.txt" ]]; then
pip install -r requirements.txt
fi
if [[ $changed_files =~ "requirements-qa.txt" ]]; then
pip install -r requirements-qa.txt
fi
- name: test_cli
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment