File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
fetch-depth : 0
14
14
- uses : actions/setup-python@v4
15
15
- name : requirements
16
- run : |
16
+ run : |
17
17
sudo apt-get -qq update
18
18
sudo apt-get -qq install clang-tidy clang-format
19
- # checks are passing with less errors when used with this version.
19
+ # checks are passing with less errors when used with this version.
20
20
# The default installs v6.0 which did not work out well in my tests
21
21
- name : Setup Git Specs
22
22
run : |
33
33
git diff --diff-filter=dr --name-only origin/master > git_diff.txt
34
34
echo "Files changed-- `cat git_diff.txt`"
35
35
- name : Configure for static lint checks
36
- # compiling first gives clang-tidy access to all the header files and settings used to compile the programs.
37
- # This will check for macros, if any, on linux and not for Windows. But the use of portability checks should
36
+ # compiling first gives clang-tidy access to all the header files and settings used to compile the programs.
37
+ # This will check for macros, if any, on linux and not for Windows. But the use of portability checks should
38
38
# be able to catch any errors for other platforms.
39
39
run : cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
40
40
- name : Lint modified files
59
59
- uses : actions/checkout@v4
60
60
with :
61
61
submodules : true
62
+ - uses : root-project/gcc-problem-matcher-improved@v1
62
63
- run : |
63
64
cmake -B ./build -S .
64
65
cmake --build build --parallel 4
You can’t perform that action at this time.
0 commit comments