The Analyze action is available on the context menu of the project explorer at project, folder and file level. The analyze action will run the https://clang.llvm.org/extra/clang-tidy linter tool on the C/C++ files selected by the project explorer node and display warnings in the output window. The default checks will be the same as the clang analyzer. You can enable additional checks by setting the Clang Tidy Checks project option. For example you can enable the bugprone code constructs check and disable a specific clang analyzer diagnostic check as follows

bugprone-*
-clang-diagnostic-parentheses-equality

You can also set the project option Analyze After Compile which will run the analyzer each time the compiler is run.