Skip to content

Commit 43ee0f9

Browse files
committed
added clang-tidy installation step cause clang-tidy was not installed on the runner...
1 parent 870828e commit 43ee0f9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/clang_tidy.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,13 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24+
- name: Install clang-tidy
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y clang-tidy
28+
2429
- name: Configure (clang_debug)
25-
run: cmake --preset clang_debug 2>&1 | tee configure_output.txt
30+
run: cmake --preset clang_debug
2631

2732
- name: Run clang-tidy
2833
run: |

0 commit comments

Comments
 (0)