We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b842860 commit ff59bcaCopy full SHA for ff59bca
1 file changed
.github/workflows/static-code-analysis.yml
@@ -25,3 +25,10 @@ jobs:
25
run: sudo apt-get -qq -y install cppcheck
26
- name: Run Cppcheck
27
run: cppcheck src/ -j $(nproc) --force --inline-suppr --library=qt --error-exitcode=1 --template="::{severity} file={file},line={line},col={column}::{message}" ${{ env.extra-args }}
28
+ clang-format:
29
+ name: clang-format
30
+ runs-on: ubuntu-latest
31
+ steps: |
32
+ cmake -S . -B build
33
+ cd build
34
+ make clang-format-check
0 commit comments