From 56dc087e8b4926e25e607b46f84e1c324b9dff0e Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Thu, 12 Aug 2021 14:24:41 +0300 Subject: [PATCH] github ci: report any flake8 code as failure. --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 931f639f..9de12aa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [ master ] jobs: - build: + check: runs-on: ubuntu-latest strategy: @@ -27,10 +27,7 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings - flake8 . --count --exit-zero --statistics + flake8 . --show-source - name: Run unit tests run: | python -m unittest -v