Skip to content

Commit 81b56ef

Browse files
committed
Install things outside venv
1 parent 2d88b23 commit 81b56ef

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/ci_cd.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,13 @@ jobs:
2626

2727
- name: "Create virtual environment"
2828
run: |
29-
python -m pip install --upgrade pip
29+
python -m pip install --upgrade pip poetry pre-commit
3030
python -m venv ./venv
3131
3232
- name: "Install project"
3333
run: |
3434
./venv/scripts/activate
35-
python -m pip install poetry
36-
python -m poetry install
37-
38-
- name: "Install pre-commit"
39-
shell: bash
40-
run: |
41-
./venv/scripts/activate
42-
python -m pip install pre-commit
35+
poetry install
4336
pre-commit install
4437
4538
- name: "Run pre-commit"

0 commit comments

Comments
 (0)