diff --git a/.clang-tidy b/.clang-tidy deleted file mode 100644 index c534e588d..000000000 --- a/.clang-tidy +++ /dev/null @@ -1,6 +0,0 @@ -Checks: '*' -HeaderFilterRegex: 'include/.*|externals/fmt/test/gtest/gtest/.*' -ExtraArgs: - - '-std=gnu++20' - - '-Wno-double-promotion' -BuildPath: 'build/unixlike-clang-debug-static' \ No newline at end of file diff --git a/.github/workflows/run-clang-tidy.json b/.github/workflows/run-clang-tidy.json new file mode 100644 index 000000000..66c2a4968 --- /dev/null +++ b/.github/workflows/run-clang-tidy.json @@ -0,0 +1,7 @@ +{ + "paths": [ + "include/.*", + "externals/fmt/test/gtest/gtest/.*" + ], + "buildRoot": "build/unixlike-clang-debug-static" +} \ No newline at end of file diff --git a/run-clang-tidy.json b/run-clang-tidy.json deleted file mode 100644 index e516e596e..000000000 --- a/run-clang-tidy.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "tidyFile": ".clang-tidy" -} \ No newline at end of file