File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 - name : Install cpplint
3232 run : pipx install cpplint
3333 - name : Run cpplint
34- run : cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/app /fast/*
34+ run : cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/cpp /fast/*
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
2020 python-version : 3.13
2121
2222 - name : Install libraries
23- run : make python-install-editable
23+ run : make python-install
2424
2525 - name : mypy
26- run : mypy ./src
26+ run : make mypy
2727
2828 - name : ruff
29- run : ruff check .
29+ run : make ruff
3030
3131 - name : flake8
32- run : flake8 .
32+ run : make flake8
Original file line number Diff line number Diff line change @@ -5,4 +5,14 @@ python-install:
55 pip3 install .
66
77python-install-editable :
8- pip3 install -e .[development]
8+ pip3 install -e .[development]
9+
10+ mypy :
11+ mypy ./src/python/
12+
13+ ruff :
14+ ruff check ./src/python/
15+
16+ flake8 :
17+ flake8 ./src/python/
18+
Original file line number Diff line number Diff line change @@ -47,3 +47,6 @@ where = ./src/python
4747include =
4848 app
4949 app.*
50+
51+ [flake8]
52+ max-line-length = 120
You can’t perform that action at this time.
0 commit comments