From 0d1fa1bafe9920c4de225d8fafc3e3a7e88abd39 Mon Sep 17 00:00:00 2001 From: salman2013 Date: Wed, 3 Apr 2024 08:58:52 +0500 Subject: [PATCH] chore: testing ci check --- .github/workflows/check_dependencies.yml | 28 ++++++++++++++---------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/check_dependencies.yml b/.github/workflows/check_dependencies.yml index 7b6b512974c7..9dd180a09476 100644 --- a/.github/workflows/check_dependencies.yml +++ b/.github/workflows/check_dependencies.yml @@ -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