Skip to content

Commit 2bf1347

Browse files
authored
Refactor Python dependency installation in CI workflow
Simplified Python dependency installation step.
1 parent fc52cce commit 2bf1347

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,13 @@ jobs:
275275
${{ runner.os }}-pip-
276276
277277
- name: Install Python Dependencies
278-
run: |
279-
pip install --upgrade pip
280-
pip install -r requirements-ci.txt
278+
run: pip install -r requirements-ci.txt
281279

282280
- name: Install Library Into Virtualenv
283281
run: |
284282
python -m venv venv/
285283
source venv/bin/activate
284+
python -m pip install --upgrade pip
286285
python -m pip install .
287286
288287
- name: Run Pip Audit Check On Main Library Dependencies

0 commit comments

Comments
 (0)