From 9630d085f4344a00f6ad5ba7bb468c70ebd2b4c0 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl Date: Wed, 29 Jan 2025 13:21:28 -0800 Subject: [PATCH] Update .github/workflows/checks.yml Co-authored-by: Carlo Costino --- .github/workflows/checks.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4041a8923..49e24566a 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -38,10 +38,8 @@ jobs: output: report-markdown annotations: failed-tests prnumber: ${{ steps.findPr.outputs.number }} - - name: Run black - run: poetry run black . - name: Check imports alphabetized - run: poetry run isort ./app ./tests + run: poetry run isort --check-only ./app ./tests - name: Run style checks run: poetry run flake8 . - name: Check dead code