From 85132e2fc2c922212d823db5f3ccd7c72c2033cc Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Fri, 9 Aug 2024 23:44:43 +0100 Subject: [PATCH] Use flake8 in pylint.yml --- .github/workflows/pylint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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')