From 788f5e2d86e7da5d64ad4f52653116782fca77c5 Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Tue, 18 Oct 2022 20:20:21 +0000 Subject: [PATCH] reactivate flake8 in checks.yml --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 57e11688e..49f256e4b 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -57,8 +57,8 @@ jobs: run: make bootstrap env: SQLALCHEMY_DATABASE_TEST_URI: postgresql://user:password@localhost:5432/test_notification_api - # - name: Run style checks - # run: flake8 . + - name: Run style checks + run: flake8 . - name: Check imports alphabetized run: isort --check-only ./app ./tests - name: Run tests