Remove requirements files and fix code accordingly #195
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Vulture - Find unused code" | |
| on: | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: vulture | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Find changed Python files | |
| id: files | |
| uses: Ana06/get-changed-files@v2.3.0 | |
| with: | |
| filter: "*.py" | |
| - name: Scavenge | |
| uses: anaynayak/python-vulture-action@v1.0 | |
| id: vulture | |
| with: | |
| vulture-args: --min-confidence 80 --ignore-names args,kwargs ${{steps.files.outputs.all}} | |
| continue-on-error: true |