File tree Expand file tree Collapse file tree
.github/actions/mise-project-setup Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,13 +97,19 @@ runs:
9797 # Unset in case it is set by an earlier run of this action
9898 unset UV_PYTHON_DOWNLOADS
9999
100+ echo "PATH=${PATH}"
101+
102+ set -x
100103 for dir in $DIRECTORIES; do
101104 echo "::group::Install mise tools: $dir"
102105 pushd "$dir"
106+ which python || true
107+ which python3 || true
103108 mise upgrade
104109 popd
105110 echo "::endgroup::"
106111 done
112+ set +x
107113
108114 echo ::group::Mise prune
109115 mise prune
Original file line number Diff line number Diff line change @@ -88,6 +88,9 @@ echo "::group::Environment variable changes"
8888 echo -n " RUSTUP_HOME="
8989 echo " ${rustup_home} " | tr -d ' \n'
9090 echo
91+
92+ echo MISE_DEBUG=1
93+ echo RUST_LOG=uv=debug
9194} | tee -a " ${GITHUB_ENV} "
9295echo " ::endgroup::"
9396
You can’t perform that action at this time.
0 commit comments