From d4ccb369f4d8665ac2ea95e0ae24d8e847ad4362 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 20 Aug 2020 09:56:39 +0200 Subject: [PATCH] nw and tests folders only --- .github/workflows/syntax.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/syntax.yml b/.github/workflows/syntax.yml index 0dcd100b..20736e91 100644 --- a/.github/workflows/syntax.yml +++ b/.github/workflows/syntax.yml @@ -20,6 +20,10 @@ jobs: - name: Install flake8 run: pip install flake8 - name: Syntax Error Check - run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + run: | + flake8 nw --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 tests --count --select=E9,F63,F7,F82 --show-source --statistics - name: Coding Style Violations - run: flake8 . --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics + run: | + flake8 nw --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics + flake8 tests --count --max-line-length=99 --ignore E203,E221,E226,E241,E251,E261,E266,E302,E305 --show-source --statistics