fix(actions): hopefully fixed the venv not being activated
Some checks failed
Pylint / Pylint (push) Failing after 43s
Some checks failed
Pylint / Pylint (push) Failing after 43s
This commit is contained in:
parent
972b210557
commit
5615fe341f
1 changed files with 3 additions and 1 deletions
|
@ -19,4 +19,6 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: /root/.local/bin/poetry install --with dev
|
run: /root/.local/bin/poetry install --with dev
|
||||||
- name: Analysing the code with Pylint
|
- name: Analysing the code with Pylint
|
||||||
run: pylint $(git ls-files '*.py')
|
run: |
|
||||||
|
/root/.local/bin/poetry shell
|
||||||
|
pylint $(git ls-files '*.py')
|
||||||
|
|
Loading…
Reference in a new issue