Use flake8 in pylint.yml

This commit is contained in:
Marc Di Luzio 2024-08-09 23:44:43 +01:00 committed by GitHub
parent 2008e2e090
commit 85132e2fc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
name: Pylint
name: Python Lint
on: [push]
@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint discord pytest
- name: Analysing the code with pylint
pip install flake8 discord pytest
- name: Analysing the code with flake8
run: |
pylint $(git ls-files '*.py')
flake8 $(git ls-files '*.py')