Skip to content

Updated Loqusdb table to display information on if current case is the one counted when the observations equals one #6945

Updated Loqusdb table to display information on if current case is the one counted when the observations equals one

Updated Loqusdb table to display information on if current case is the one counted when the observations equals one #6945

Workflow file for this run

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