Skip to content

Commit

Permalink
chore: testing ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
salman2013 committed Apr 3, 2024
1 parent 437f099 commit ebc7c44
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ jobs:

- name: Copy Python requirements file
run: |
py_reqs=$(find . -maxdepth 1 -name "requirements*.txt" | head -n 1)
if [ -f "$py_reqs" ]; then
cp "$py_reqs" WORK_DIR/repo_work/base.txt
echo "Python requirements file: $py_reqs"
for req_file in "requirements/edx/base.txt" "requirements/base.txt" "requirements.txt"; do
if [ -f "$req_file" ]; then
cp "$req_file" WORK_DIR/repo_work/base.txt
echo "Python requirements file found: $req_file"
echo "Content of base.txt:"
cat "$py_reqs"
else
echo "No Python requirements file found."
cat "$req_file"
break
fi

0 comments on commit ebc7c44

Please sign in to comment.