Skip to content

Commit 86d4fb5

Browse files
committed
use colored logs as progress markers
1 parent a54fa89 commit 86d4fb5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,13 +303,17 @@ runs:
303303
mkdir $env.UV_CACHE_DIR
304304
}
305305
306+
print $"\n(ansi purple)Installing uv version ($env.UV_VERSION)(ansi reset)"
306307
if ((sys host | get 'name') == 'Windows') {
307308
^powershell -ExecutionPolicy ByPass -c $"irm https://astral.sh/uv/($env.UV_VERSION)/install.ps1 | iex"
308309
} else {
309310
^curl -LsSf $"https://astral.sh/uv/($env.UV_VERSION)/install.sh" | sh
310311
}
311312
313+
print $"\n(ansi purple)Installing workflow dependencies(ansi reset)"
312314
^$'($env.UV_INSTALL_DIR)/uv' sync --directory $action_path --group action
315+
316+
print $"\n(ansi purple)Ensuring clang-format and clang-tidy ${{ inputs.version }} are present(ansi reset)"
313317
^$'($env.UV_INSTALL_DIR)/uv' run clang-tools -i ${{ inputs.version }} -b
314318
315319
- name: Run cpp-linter
@@ -345,4 +349,5 @@ runs:
345349
--jobs=${{ inputs.jobs }}
346350
]
347351
352+
print $"\n(ansi purple)Running cpp-linter(ansi reset)"
348353
^$'($env.UV_INSTALL_DIR)/uv' run cpp-linter ...$args

0 commit comments

Comments
 (0)