We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d88b23 commit 81b56efCopy full SHA for 81b56ef
.github/workflows/ci_cd.yml
@@ -26,20 +26,13 @@ jobs:
26
27
- name: "Create virtual environment"
28
run: |
29
- python -m pip install --upgrade pip
+ python -m pip install --upgrade pip poetry pre-commit
30
python -m venv ./venv
31
32
- name: "Install project"
33
34
./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
+ poetry install
43
pre-commit install
44
45
- name: "Run pre-commit"
0 commit comments