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 4, 2024
1 parent ef7dedb commit 7c99e20
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
- name: Create repo_work directory
run: |
WORK_DIR="/tmp/unpack_reqs"
mkdir -p "$WORK_DIR"/repo_work
repo_name="${{ github.repository }}"
repo_work="$WORK_DIR/$repo_name"
mkdir -p "$repo_work"
echo "$repo_work"
- name: Copy Python requirements file
run: |
Expand All @@ -39,10 +42,8 @@ jobs:
done
- name: Create virtual environment
run: python3 -m venv $WORK_DIR/repo_work/.venv
working-directory: |
WORK_DIR="/tmp/unpack_reqs"
$WORK_DIR/repo_work
run: python3 -m venv .venv
working-directory: /tmp/unpack_reqs/repo_work

- name: Upgrade pip
run: |
Expand Down

0 comments on commit 7c99e20

Please sign in to comment.