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