From b2ec7f33a34c3e1ddb03ffb35644e32b62f385bf Mon Sep 17 00:00:00 2001 From: Praveen K Pandey Date: Thu, 4 Apr 2024 21:26:19 +0530 Subject: [PATCH] enable pylint github Action check for repo as recent PR seen as not following pylint so making sure pylint sanity check done of any Pull request Signed-off-by: Praveen K Pandey --- .github/workflows/pylint.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 00000000..7a87c6ee --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,28 @@ +name: Pylint + +on: + push: + branches: + - 'master' + pull_request: + branches: + - 'master' +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pylint + - name: Analysing the code with pylint + run: | + pylint $(git ls-files '*.py')