fix(actions): hopefully fixed the venv not being activated
Some checks failed
Pylint / Pylint (push) Failing after 43s

This commit is contained in:
Seaswimmer 2023-09-24 08:38:48 -04:00
parent 972b210557
commit 5615fe341f
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -19,4 +19,6 @@ jobs:
- name: Install dependencies
run: /root/.local/bin/poetry install --with dev
- name: Analysing the code with Pylint
run: pylint $(git ls-files '*.py')
run: |
/root/.local/bin/poetry shell
pylint $(git ls-files '*.py')