fix(actions): fixed poetry not being added to PATH
Some checks failed
Pylint / Pylint (push) Failing after 31s
Some checks failed
Pylint / Pylint (push) Failing after 31s
This commit is contained in:
parent
8cb4b3bb35
commit
805159d0d8
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,9 @@ jobs:
|
|||
add-apt-repository ppa:deadsnakes/ppa
|
||||
apt install -y python3.11 gcc python3-dev
|
||||
- name: Install Poetry
|
||||
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
||||
run: |
|
||||
curl -sSL https://install.python-poetry.org | python3.11 -
|
||||
export PATH="/root/.local/bin:$PATH"
|
||||
- name: Install dependencies
|
||||
run: poetry install --with dev
|
||||
- name: Analysing the code with Pylint
|
||||
|
|
Loading…
Reference in a new issue