We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15a422c commit be5f191Copy full SHA for be5f191
1 file changed
.github/workflows/cpp_linters.yaml
@@ -22,8 +22,12 @@ jobs:
22
- name: Install libraries
23
run: make python-install-editable
24
25
- - name: Install clang-tidy
26
- run: sudo apt install clang-tidy
27
-
28
- - name: Run clang-tidy
29
- run: clang-tidy ./src/app/fast/
+ - name: Install pipx
+ run: sudo apt update \
+ sudo apt install pipx \
+ pipx ensurepath \
+ sudo pipx ensurepath --global
30
+ - name: Install cpplint
31
+ run: pipx install cpplint
32
+ - name: Run cpplint
33
+ run: cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/app/fast/
0 commit comments