From e4902de09a3a5d4333fd8d3bc58b456bff2b163a Mon Sep 17 00:00:00 2001 From: Adwait Naik Date: Tue, 1 Feb 2022 14:49:41 +0000 Subject: [PATCH] Update pylint.yml --- .github/workflows/pylint.yml | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index dd72710..5ffefb3 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,23 +1,12 @@ -name: py-rrt - -on: [push] - +on: push +name: on push jobs: - build: + pythonPylintGithubAction: + name: Python Pylint Github Action runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.6"] steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + - uses: actions/checkout@master + - name: Python Pylint Github Action + uses: fylein/python-pylint-github-action@master 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') + args: pylint --help