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 8396c71 commit 0d1fa1b
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,22 @@ jobs:
python-version: '3.8'

- name: Create Virtual Environment
run: python -m venv .venv
run: python3 -m venv .venv
# Optionally, you can log the output to a file
# continue-on-error: true
# env:
# log_file: make_venv.log

- name: Install Dependencies
run: |
source .venv/bin/activate # Activate the virtual environment
pip install --upgrade pip
pip install -r requirements.txt
- name: Upgrade pip
run: .venv/bin/python3 -m pip install -U pip
# Optionally, you can log the output to a file
# continue-on-error: true
# env:
# log_file: pip_upgrade.log

- name: Activate Virtual Environment and List Installed Packages with Source URLs
run: |
source .venv/bin/activate # Activate the virtual environment
pip install --upgrade pip
pip list --format=columns --verbose | grep -E 'Package:|Location:|Source:'
- name: Download dependencies
run: .venv/bin/python3 -m pip download --dest files -r base.txt
# Optionally, you can log the output to a file
# continue-on-error: true
# env:
# log_file: pip_download.log

0 comments on commit 0d1fa1b

Please sign in to comment.