File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 26
26
python -m pip install black
27
27
- name : Check code formatting with black
28
28
run : |
29
- black -v -l 100 --check .
29
+ black -v -l 100 --check src/ test/
Original file line number Diff line number Diff line change 26
26
python -m pip install flake8
27
27
- name : Lint with flake8
28
28
run : |
29
- flake8 . -v --count --max-line-length=100 --max-complexity=10 --per-file-ignores="__init__.py:F401" --show-source --statistics
29
+ flake8 src/ test/ -v --count --max-line-length=100 --max-complexity=10 --per-file-ignores="__init__.py:F401" --show-source --statistics
Original file line number Diff line number Diff line change 26
26
python -m pip install isort
27
27
- name : Check imports organization with isort
28
28
run : |
29
- isort -v --profile black -l 100 --check .
29
+ isort -v --profile black -l 100 --check src/ test/
You can’t perform that action at this time.
0 commit comments