Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fylein/python-pylint-github-action

Github Action for Pylint with Python Slim image
https://github.com/fylein/python-pylint-github-action

team-integrations

Last synced: about 3 hours ago
JSON representation

Github Action for Pylint with Python Slim image

Awesome Lists containing this project

README

        

# 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 -

```bash
$ pylint
```

Run pylint command with .pylintrc in your repo -

```bash
$ pylint --rcfile=.pylintrc
```

### Usage

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