Skip to content

Commit 1cb29ae

Browse files
authored
Create README.md
1 parent 7fbfdfc commit 1cb29ae

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)