From 3cf5ea880242da993182483744923bfd3cdba6dc Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 8 Aug 2023 11:13:44 -0700 Subject: [PATCH] add change to workflow --- .github/workflows/checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index de26f14ed..36fbdd410 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -46,6 +46,8 @@ jobs: run: pipenv run flake8 . - name: Check imports alphabetized run: pipenv run isort --check-only ./app ./tests + - name: Check for dead code + run: make dead-code - name: Run tests with coverage run: pipenv run coverage run --omit=*/notifications_utils/* -m pytest -n4 --maxfail=10 env: