This is a plugin for Pylint that allows it to output annotations in the format that GitHub Actions understands. See annotations from examples workflows. Also these annotations will be displayed in your pull requests changes
So simple:
pip install pylint-actions
Add the following to your pyproject.toml
file:
[tool.pylint.main]
load-plugins = "pylint_actions"
Or load the plugin with any available pylint configuration variants except command line arguments.
Next, run pylint with the --output-format=actions
option, or shorted -f actions
.
In your GitHub Actions workflow, use it like this:
- name: Run pylint
run: poetry run pylint -f actions src