only run flake8 on Python 3.8 or higher, refs #550

This commit is contained in:
Simon Willison 2023-05-21 11:26:27 -07:00
commit 948692a94b

View file

@ -44,7 +44,8 @@ jobs:
pytest -v
- name: run mypy
run: mypy sqlite_utils tests
- name: run flake8
- name: run flake8 if Python 3.8 or higher
if: matrix.python-version >= 3.8
run: flake8
- name: Check formatting
run: black . --check