We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c2908 commit cc0b06fCopy full SHA for cc0b06f
action.yml
@@ -378,7 +378,12 @@ runs:
378
^$'($env.UV_INSTALL_DIR)/uv' ...$uv_args
379
380
print $"\n(ansi purple)Ensuring clang-format and clang-tidy ${{ inputs.version }} are present(ansi reset)"
381
- let version = "${{ inputs.version }}" | into int
+ let version_str = "${{ inputs.version }}"
382
+ if ($version_str | is-empty) {
383
+ print $"(ansi yellow)Using platform default clang tools (version not specified)(ansi reset)"
384
+ exit 0
385
+ }
386
+ let version = $version_str | into int
387
388
$uv_args = [run --no-sync --project $action_path --directory (pwd)]
389
if $verbosity {
0 commit comments