fix(actions): hopefully fixed poetry still not being found by the shell
Some checks failed
Pylint / Pylint (push) Failing after 43s
Some checks failed
Pylint / Pylint (push) Failing after 43s
This commit is contained in:
parent
805159d0d8
commit
972b210557
1 changed files with 2 additions and 4 deletions
|
@ -15,10 +15,8 @@ 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 -
|
||||
export PATH="/root/.local/bin:$PATH"
|
||||
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
||||
- name: Install dependencies
|
||||
run: poetry install --with dev
|
||||
run: /root/.local/bin/poetry install --with dev
|
||||
- name: Analysing the code with Pylint
|
||||
run: pylint $(git ls-files '*.py')
|
||||
|
|
Loading…
Reference in a new issue