Fixed Pylint to work w/ Poetry
This commit is contained in:
parent
2357c835a6
commit
281c60a738
|
@ -17,7 +17,8 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pylint
|
pip install poetry
|
||||||
|
poetry install
|
||||||
- name: Analysing the code with pylint
|
- name: Analysing the code with pylint
|
||||||
run: |
|
run: |
|
||||||
pylint $(git ls-files '*.py')
|
poetry run pylint $(git ls-files '*.py')
|
||||||
|
|
Loading…
Reference in New Issue