Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anaynayak/python-vulture-action
Run Vulture on your Python codebase to identify dead code.
https://github.com/anaynayak/python-vulture-action
actions codequality python vulture
Last synced: 19 days ago
JSON representation
Run Vulture on your Python codebase to identify dead code.
- Host: GitHub
- URL: https://github.com/anaynayak/python-vulture-action
- Owner: anaynayak
- License: mit
- Created: 2020-08-25T15:14:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-20T13:50:51.000Z (almost 3 years ago)
- Last Synced: 2024-10-17T21:26:36.494Z (29 days ago)
- Topics: actions, codequality, python, vulture
- Language: Python
- Homepage: https://github.com/marketplace/actions/python-vulture-action
- Size: 6.84 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Vulture Action
This action runs [Vulture](https://pypi.org/project/vulture/) on your Python codebase.
## Inputs
### `vulture-args`
**Required** Arguments passed to the vulture cli.
# Usage
```yaml
on: [push]jobs:
build:
runs-on: ubuntu-latest
name: vulture
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Scavenge
uses: anaynayak/[email protected]
id: vulture
with:
vulture-args: example --min-confidence 90```