Skip to content

Commit 55e27f0

Browse files
committed
Switch to 3rdparty action for clang-tidy run
1 parent f0f98e4 commit 55e27f0

File tree

3 files changed

+3
-117
lines changed

3 files changed

+3
-117
lines changed

.github/actions/clang-tidy-native/action.yml

Lines changed: 0 additions & 114 deletions
This file was deleted.

.github/workflows/static-analysis-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Show ccache stats
6363
run: ccache --show-stats
6464
- name: Run clang-tidy
65-
uses: ./.github/actions/clang-tidy-native
65+
uses: aobolensk/clang-tidy-action@initial
6666
id: review
6767
with:
6868
exclude: "3rdparty build"
@@ -111,7 +111,7 @@ jobs:
111111
- name: Show ccache stats
112112
run: ccache --show-stats
113113
- name: Run clang-tidy
114-
uses: ./.github/actions/clang-tidy-native
114+
uses: aobolensk/clang-tidy-action@initial
115115
id: review
116116
with:
117117
exclude: "3rdparty build docs_venv .git .pytest_cache .ruff_cache xml"

modules/task/include/task.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class Task {
228228
const auto max_time = ppc::util::GetTaskMaxTime();
229229
std::stringstream err_msg;
230230
if (diff < max_time) {
231-
err_msg << "Test time:" << std::fixed << std::setprecision(10) << diff << '\n';
231+
err_msg << "Test time:" << std::fixed << std::setprecision(10) << diff << std::endl;
232232
} else {
233233
err_msg << "\nTask execute time need to be: ";
234234
err_msg << "time < " << max_time << " secs.\n";

0 commit comments

Comments
 (0)