We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5759ad commit f43f4bfCopy full SHA for f43f4bf
1 file changed
.github/workflows/cpp_linters.yaml
@@ -0,0 +1,29 @@
1
+name: CPPLinters
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
+ - name: Python Setup
18
+ uses: actions/setup-python@v3
19
+ with:
20
+ python-version: 3.13
21
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/ -checks=-*,clang-analyzer-*,-clang-analyzer-cplusplus*
0 commit comments