Skip to content

Commit c6e81aa

Browse files
committed
enable verbosity in action.yml
1 parent d7155ea commit c6e81aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,10 @@ runs:
311311
}
312312
313313
print $"\n(ansi purple)Installing workflow dependencies(ansi reset)"
314-
^$'($env.UV_INSTALL_DIR)/uv' sync --directory $action_path --group action
314+
^$'($env.UV_INSTALL_DIR)/uv' sync -v --directory $action_path --group action
315315
316316
print $"\n(ansi purple)Ensuring clang-format and clang-tidy ${{ inputs.version }} are present(ansi reset)"
317-
^$'($env.UV_INSTALL_DIR)/uv' run clang-tools -i ${{ inputs.version }} -b
317+
^$'($env.UV_INSTALL_DIR)/uv' run -v clang-tools -i ${{ inputs.version }} -b
318318
319319
- name: Run cpp-linter
320320
id: cpp-linter
@@ -350,4 +350,4 @@ runs:
350350
]
351351
352352
print $"\n(ansi purple)Running cpp-linter(ansi reset)"
353-
^$'($env.UV_INSTALL_DIR)/uv' run cpp-linter ...$args
353+
^$'($env.UV_INSTALL_DIR)/uv' run -v cpp-linter ...$args

0 commit comments

Comments
 (0)