fix(actions): trying to use python3.11 -m to run poetry
Some checks failed
Pylint / Pylint (push) Failing after 38s

This commit is contained in:
SeaswimmerTheFsh 2023-09-24 12:46:59 -04:00
parent 41592152eb
commit 173728ffdb
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 5019678FD9CF50D8

View file

@ -17,10 +17,6 @@ jobs:
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3.11 -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry install --with dev
run: python3.11 -m poetry install --with dev
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')
run: python3.11 -m poetry run pylint $(git ls-files '*.py')