File tree 1 file changed +12
-32
lines changed
1 file changed +12
-32
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
cppcheck :
12
- runs-on : ubuntu-latest
13
- steps :
14
- - uses : actions/checkout@v4
15
-
16
- - name : Install dependencies
17
- run : |
18
- sudo apt-get update
19
- sudo DEBIAN_FRONTEND=noninteractive apt-get -y install cppcheck
20
-
21
- - name : Configure
22
- run : |
23
- cmake -S . -B build \
24
- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
25
- -DBUILD_PYTHON=OFF \
26
- -DBUILD_TESTING=OFF
27
-
28
- - name : Run cppcheck
29
- run : |
30
- cppcheck \
31
- --enable=style,portability,performance,warning \
32
- --library=posix \
33
- --library=cppcheck/segyio.cfg \
34
- --suppressions-list=cppcheck/suppressions.txt \
35
- --inline-suppr \
36
- --project=build/compile_commands.json \
37
- --error-exitcode=1 \
38
- --check-level=exhaustive
39
-
40
- cppcheck_mac :
41
- runs-on : macos-latest
12
+ name : cppcheck on ${{ matrix.os }}
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ include :
18
+ - os : ubuntu-latest
19
+ cppcheck_install_command : sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install cppcheck
20
+ - os : macos-latest
21
+ cppcheck_install_command : brew install cppcheck
42
22
steps :
43
23
- uses : actions/checkout@v4
44
24
45
25
- name : Install dependencies
46
26
run : |
47
- brew install cppcheck
27
+ ${{ matrix.cppcheck_install_command }}
48
28
49
29
- name : Configure
50
30
run : |
64
44
--project=build/compile_commands.json \
65
45
--error-exitcode=1 \
66
46
--check-level=exhaustive
67
-
47
+
68
48
scan_build :
69
49
runs-on : ubuntu-latest
70
50
steps :
You can’t perform that action at this time.
0 commit comments