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 82b236f commit ceced97Copy full SHA for ceced97
.github/workflows/build.yml
@@ -66,11 +66,11 @@ jobs:
66
67
- name: Test Executable for Windows
68
if: matrix.os == 'windows-latest'
69
+ shell: pwsh
70
run: |
- ./dist/viewer_win64_python${{ matrix.python-version }}.exe &
71
- VIEWER_PID=$!
72
- sleep 10
73
- kill $VIEWER_PID
+ $process = Start-Process -FilePath "dist/viewer_win64_python_${{ matrix.python-version }}.exe" -PassThru
+ Start-Sleep -Seconds 10
+ $process.Kill()
74
75
- name: Upload Artifacts
76
if: matrix.python-version == '3.11'
0 commit comments