Skip to content

Commit a5e258b

Browse files
committed
revert doc string revision in action.yml
1 parent 98087f7 commit a5e258b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ inputs:
4040
description: |
4141
The desired version of the [clang-tools](https://github.com/cpp-linter/clang-tools-pip) to use.
4242
Accepted options are strings which can be 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10 or 9.
43-
clang-tidy only supports versions 13 and above.
4443
4544
- Set this option to a blank string (`''`) to use the platform's default installed version.
4645
- This value can also be a path to where the clang tools are installed (if using a custom install location).
@@ -377,7 +376,6 @@ runs:
377376
}
378377
^$'($env.UV_INSTALL_DIR)/uv' ...$uv_args
379378
380-
print $"\n(ansi purple)Ensuring clang-format and clang-tidy ${{ inputs.version }} are present(ansi reset)"
381379
let version_str = "${{ inputs.version }}"
382380
if ($version_str | is-empty) {
383381
print $"(ansi yellow)Using platform default clang tools \(version not specified)(ansi reset)"
@@ -400,6 +398,7 @@ runs:
400398
$tools = $tools | append "clang-format"
401399
}
402400
401+
print $"\n(ansi purple)Ensuring ($tools | str join " and ") ${{ inputs.version }} are present(ansi reset)"
403402
for tool in $tools {
404403
print $"Installing ($tool) ($version)"
405404
let cmd = if (

0 commit comments

Comments
 (0)