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/[email protected]
        id: vulture
        with:
          vulture-args: example --min-confidence 90