Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fylein/python-pylint-github-action
- Owner: fylein
- License: mit
- Created: 2019-12-19T13:36:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-19T20:23:24.000Z (about 5 years ago)
- Last Synced: 2025-01-01T12:39:14.527Z (5 days ago)
- Topics: team-integrations
- Language: Dockerfile
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```