Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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

```