1
0
Fork 0
mirror of synced 2024-06-27 02:20:36 +12:00

Apply suggestions from code review

This commit is contained in:
Nick Sweeting 2020-07-23 11:33:01 -04:00 committed by GitHub
parent d905eca630
commit fd724e0915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,13 +37,13 @@ jobs:
- name: Lint with flake8
run: |
# one pass for show-stopper syntax errors or undefined names
pipenv run flake8 . --count --show-source --statistics
pipenv run flake8 archivebox --count --show-source --statistics
# one pass for small stylistic things
pipenv run flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics
pipenv run flake8 archivebox --count --max-line-length="$MAX_LINE_LENGTH" --statistics
- name: Lint with mypy
run: |
pipenv run mypy .
pipenv run mypy archivebox
test:
runs-on: ${{ matrix.os }}