Skip to content

Commit

Permalink
Run flake
Browse files Browse the repository at this point in the history
  • Loading branch information
mtausig committed Oct 6, 2020
1 parent d86ef8a commit 8dd8c2c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
pip install check-manifest
pip install twine
pip install wheel
pip install flake8
pip list
- name: Compile code
Expand All @@ -54,7 +55,11 @@ jobs:

- name: Check the completeness of MANIFEST.in
run: check-manifest .


- name: Run flake
continue-on-error: true
run: flake8 --exclude=build,venv --ignore= --max-line-length=200 --max-complexity=75 --show-source --statistics .

- name: Check distribution
run: |
python setup.py sdist bdist_wheel
Expand Down

0 comments on commit 8dd8c2c

Please sign in to comment.