From 430f28ca93b18cd76b049c33c204ac1396ae59bc Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 24 Apr 2021 00:09:48 -0400 Subject: [PATCH] fix lint action --- .github/workflows/lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 80f4f19f..5a402b25 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,8 @@ jobs: - name: Lint with flake8 run: | + cd archivebox # one pass for show-stopper syntax errors or undefined names - flake8 archivebox --count --show-source --statistics + flake8 . --count --show-source --statistics # one pass for small stylistic things - flake8 archivebox --count --max-line-length="$MAX_LINE_LENGTH" --statistics + flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics