Use flake8 in pylint.yml
This commit is contained in:
parent
2008e2e090
commit
85132e2fc2
1 changed files with 4 additions and 4 deletions
8
.github/workflows/pylint.yml
vendored
8
.github/workflows/pylint.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Pylint
|
name: Python Lint
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pylint discord pytest
|
pip install flake8 discord pytest
|
||||||
- name: Analysing the code with pylint
|
- name: Analysing the code with flake8
|
||||||
run: |
|
run: |
|
||||||
pylint $(git ls-files '*.py')
|
flake8 $(git ls-files '*.py')
|
||||||
|
|
Loading…
Add table
Reference in a new issue