File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments