Skip to content

Commit 33f040b

Browse files
committed
Better output when checking
1 parent c31b176 commit 33f040b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
$old = Get-Content $env:GITHUB_PATH
4747
(gi .\python*\tools\python.exe).Parent | Out-File $env:GITHUB_PATH -Encoding UTF8
4848
$old | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
49-
gc $env:GITHUB_PATH
49+
Write-Host "PATH entries:"
50+
Write-Host (gc $env:GITHUB_PATH)
5051
working-directory: ${{ runner.temp }}
5152

5253
- name: Check Python version
5354
run: >
54-
python -c "
55-
import sys;
55+
python -c "import sys;
5656
print(sys.version);
5757
print(sys.executable);
5858
sys.exit(0 if sys.version_info[:3] == (3, 14, 0) else 1)"

0 commit comments

Comments
 (0)