Skip to content

Commit 727169d

Browse files
committed
Minor cleanups
1 parent a7fa650 commit 727169d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,16 @@ jobs:
4444
run: |
4545
nuget install python -Version 3.14.0-b1 -x -o .
4646
$py = Get-Item python\tools
47-
Write-Host "Adding $py to GITHUB_PATH (${env:GITHUB_PATH})"
47+
Write-Host "Adding $py to PATH"
4848
"$py" | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
49-
Write-Host "PATH entries:"
50-
Write-Host (Get-Content $env:GITHUB_PATH)
5149
working-directory: ${{ runner.temp }}
5250

53-
- name: Check Python version
51+
- name: Check Python version is 3.14.0b1
5452
run: >
5553
python -c "import sys;
5654
print(sys.version);
5755
print(sys.executable);
58-
sys.exit(0 if sys.version_info[:3] == (3, 14, 0) else 1)"
56+
sys.exit(0 if sys.version_info[:5] == (3, 14, 0, 'beta', 1) else 1)"
5957
6058
- name: Install build dependencies
6159
run: python -m pip install "pymsbuild>=1.2.0b1"

0 commit comments

Comments
 (0)