10BC0 GitHub - anaynayak/python-vulture-action: Run Vulture on your Python codebase to identify dead code.
[go: up one dir, main page]

Skip to content

anaynayak/python-vulture-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Python Vulture Action

This action runs Vulture on your Python codebase.

Inputs

vulture-args

Required Arguments passed to the vulture cli.

Usage

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    name: vulture
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Scavenge
        uses: anaynayak/python-vulture-action@v1.0
        id: vulture
        with:
          vulture-args: example --min-confidence 90
0