We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17be0c3 commit 5218324Copy full SHA for 5218324
.github/workflows/build.yml
@@ -43,9 +43,14 @@ jobs:
43
- name: Set up Python 3.14.0b1
44
run: |
45
nuget install python -Version 3.14.0-b1 -x -o .
46
- (gi .\python*\tools\python.exe).Parent | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
+ $old = Get-Content $env:GITHUB_PATH
47
+ (gi .\python*\tools\python.exe).Parent | Out-File $env:GITHUB_PATH -Encoding UTF8
48
+ $old | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
49
working-directory: ${{ runner.temp }}
50
51
+ - name: Check Python version
52
+ run: python -c "import sys; sys.exit(0 if sys.version_info[:3] == (3, 14, 0) else 1)"
53
+
54
- name: Install build dependencies
55
run: python -m pip install "pymsbuild>=1.2.0b1"
56
0 commit comments