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