Customise institute settings to be able to display all cases with a given status #6460
Workflow file for this run
This file contains 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.2.0 | |
with: | |
filter: "*.py" | |
- name: Scavenge | |
uses: anaynayak/python-vulture-action@v1.0 | |
id: vulture | |
with: | |
vulture-args: --min-confidence 80 --ignore-names cls,args,kwargs,real_variant_database ${{steps.files.outputs.all}} | |
continue-on-error: true |