One-stop, zero-configuration GitHub Action for linting and enforcing style in Python projects.
- Zero configuration based: Add a single line in your CI and done!
- GitHub Annotations on PR: Highlights issues inline on the PR diff.
- all of most popular community trusted linters in one place.
Basic:
steps:
- uses: actions/checkout@v1
- uses: rahul-deepsource/pyaction@1.4.0
Options:
steps:
- uses: actions/checkout@v1
- uses: rahul-deepsource/pyaction@1.4.0
with:
python-root-list: "src/ tests/"
use-pycodestyle: false
use-mypy: false
use-vulture: true
extra-pylint-options: "--output-format="colorized"
The scripts and documentation in this project are released under the MIT License
Contributions are welcome! See CONTRIBUTING.md
- Ricardo Baltazar Chaves' python-lint which was used as a starting point for this project.
- Florian Bruhin who provided most of the regular expressions for problem matchers.