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 a507eec commit 8ea5db5
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,19 @@ jobs:
cat "$req_file"
break
fi
done
done
- name: Create virtual environment
run: python3 -m venv .venv
working-directory: WORK_DIR/repo_work

- name: Upgrade pip
run: |
.venv/bin/python3 -m pip install -U pip
working-directory: WORK_DIR/repo_work

- name: Download packages
run: |
echo "Downloading packages"
.venv/bin/python3 -m pip download --dest files -r base.txt
working-directory: WORK_DIR/repo_work

0 comments on commit 8ea5db5

Please sign in to comment.