Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 549 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 549 Bytes

Python Pylint GitHub Action

Github Action for Pylint with Python Slim Docker image (supports install of numpy and pandas and takes very less time to build)

Run any pylint command using the action -

$ pylint <directory_name>

Run pylint command with .pylintrc in your repo -

$ pylint --rcfile=.pylintrc <directory_name>

Usage

- name: Python Pylin GitHub Action
  uses: fylein/python-pylint-github-action@v1
  with:
    args: pip3 install -r requirements.txt && pylint --rcfile=.pylintrc <directory_name>