File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -46,17 +46,20 @@ jobs:
4646 # Code quality checks
4747 - name : Check code formatting with Black
4848 run : |
49- black --check manify/
49+ black --check manify --line-length 120/
50+ continue-on-error : true
5051
5152 - name : Check import ordering with isort
5253 run : |
5354 isort --check-only --profile black manify/
55+ continue-on-error : true
5456
5557 - name : Run pylint
5658 run : |
5759 pylint manify/
5860 continue-on-error : true
5961
62+ # Type checking
6063 - name : Check type annotations with MyPy
6164 run : |
6265 # only check core modules—skip untyped imports
6871 run : |
6972 pytest tests --cov=manify --cov-report=xml:coverage.xml
7073
74+ # Code coverage
7175 - name : Upload coverage to Codecov
7276 uses : codecov/codecov-action@v5
7377 with :
You can’t perform that action at this time.
0 commit comments