summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-02-27 15:27:31 -0500
committerengn33r <engn33r@users.noreply.github.com>2021-02-27 15:27:31 -0500
commit1ba1c7e21fa5ca42bc04980ddfa1787a99b39f75 (patch)
tree815858d1bbc3943b1e91c50e3e91857e1dc7d48e
parentbd369e05c9f6ed32eae05934988f09ff6c530653 (diff)
downloadwebsocket-client-1ba1c7e21fa5ca42bc04980ddfa1787a99b39f75.tar.gz
Do not fail GitHub Action if flake8 identifies linting errors
-rw-r--r--.github/workflows/lint.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 4a66ca3..245c0e6 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -14,7 +14,7 @@ jobs:
with:
python-version: "3.8"
- name: flake8 Lint
- uses: py-actions/flake8@v1
- with:
- ignore: "F401"
- max-line-length: "79"
+ run: |
+ pip install flake8
+ flake8 --version
+ flake8 . --exit-zero --statistics