fix(actions): installing poetry through pipx
Some checks failed
Pylint / Pylint (push) Failing after 42s
Some checks failed
Pylint / Pylint (push) Failing after 42s
This commit is contained in:
parent
a942ae517b
commit
831d2ca2dc
1 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,10 @@ jobs:
|
||||||
add-apt-repository ppa:deadsnakes/ppa
|
add-apt-repository ppa:deadsnakes/ppa
|
||||||
apt install -y python3.11 gcc python3.11-dev python3.11-venv
|
apt install -y python3.11 gcc python3.11-dev python3.11-venv
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
run: |
|
||||||
|
python3.11 -m pip install --user pipx
|
||||||
|
python3.11 -m pipx ensurepath
|
||||||
|
python3.11 -m pipx install poetry==1.2.0
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: poetry install --with dev
|
run: poetry install --with dev
|
||||||
- name: Analysing the code with Pylint
|
- name: Analysing the code with Pylint
|
||||||
|
|
Loading…
Reference in a new issue