diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 3349747..798661f 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -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')