Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2021-12-15 03:03:01 -08:00
parent abf4ce8e52
commit dfa76e9462
49 changed files with 16296 additions and 1475 deletions

View File

@ -29,20 +29,19 @@ jobs:
shell: bash
run: |
pip install \
flake8 \
poetry \
pytest
poetry
- name: Build
shell: bash
run: |
poetry install
poetry build
- name: Lint with flake8
shell: bash
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics