From: Kamalesh Babulal Date: Wed, 14 Aug 2024 05:35:59 +0000 (+0530) Subject: workflow/ci: Install flake8-quote under pylint job X-Git-Tag: v3.2.0~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16368ae5b6c6e0264e1ecf4cbf92f4ce88b0aa8e;p=thirdparty%2Flibcgroup.git workflow/ci: Install flake8-quote under pylint job In the Github workflow continuous integration::flake8-lint job, add new checks for standardizing Python quotes usage. This will help maintain the recommended quotes style in all new PR's. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 44bfa8b9..5d539cff 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -35,6 +35,10 @@ jobs: name: Lint runs-on: ubuntu-latest steps: + - name: Install flake8 dependencies + run: | + sudo apt-get update + sudo apt-get install python3-flake8-quotes - name: Check out source repository uses: actions/checkout@v4 - name: Set up Python environment