We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbfdfc commit 1cb29aeCopy full SHA for 1cb29ae
1 file changed
README.md
@@ -0,0 +1,30 @@
1
+# Python Vulture Action
2
+
3
+This action runs [Vulture](https://pypi.org/project/vulture/) on your Python codebase.
4
5
+## Inputs
6
7
+### `vulture-args`
8
9
+**Required** Arguments passed to the vulture cli.
10
11
+# Usage
12
13
+```yaml
14
+on: [push]
15
16
+jobs:
17
+ build:
18
+ runs-on: ubuntu-latest
19
+ name: vulture
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v2
23
+ - name: Scavenge
24
+ uses: anaynayak/python-vulture-action@v1
25
+ id: vulture
26
+ with:
27
+ vulture-args: example --min-confidence 90
28
29
+```
30
0 commit comments