We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 119cd3d commit cddbb6aCopy full SHA for cddbb6a
2 files changed
.github/workflows/gh-pages.yml
@@ -28,8 +28,11 @@ jobs:
28
enable-cache: true
29
cache-suffix: "docbuild"
30
31
- - name: Print the installed version
32
- run: echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}"
+ - name: Print uv debug information
+ run: |
33
+ echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}"
34
+ echo "Installed uv path is ${{ steps.setup-uv.outputs.uv-path }}"
35
+ echo "Set Python version is ${{ steps.setup-uv.outputs.python-version }}"
36
37
- name: Install dependencies
38
run: uv sync --frozen --group docs
changelog.d/186.infra.rst
@@ -0,0 +1 @@
1
+Print more information from the setup-uv step.
0 commit comments