We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a81137 commit 931016fCopy full SHA for 931016f
1 file changed
.github/workflows/clang-tidy.yml
@@ -8,6 +8,10 @@ on:
8
branches: [ main ]
9
pull_request:
10
11
+concurrency:
12
+ group: clang-tidy-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
jobs:
16
clang-tidy:
17
runs-on: ubuntu-latest
@@ -16,10 +20,10 @@ jobs:
20
- name: Checkout repository
21
uses: actions/checkout@v4
18
22
19
- - name: Install clang-tidy
23
+ - name: Install dependencies (clang-tidy + HDF5)
24
run: |
25
sudo apt-get update
- sudo apt-get install -y clang-tidy
26
+ sudo apt-get install -y clang-tidy libhdf5-dev
27
28
- name: Configure project (CMake)
29
@@ -31,4 +35,7 @@ jobs:
31
35
32
36
- name: Run clang-tidy
33
37
34
- clang-tidy $(find . -name "*.cpp") -- -I./include -std=c++20
38
+ clang-tidy $(find . -name "*.cpp") -- \
39
+ -I./include \
40
+ -Ibuild \
41
+ -std=c++20
0 commit comments