Skip to content

Commit f43f4bf

Browse files
committed
Add new workflow
1 parent a5759ad commit f43f4bf

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/cpp_linters.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CPPLinters
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
branches:
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

Comments
 (0)