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 b25cbb4 commit 983f4c8Copy full SHA for 983f4c8
.github/workflows/test-metatrader5-integration.yml
@@ -25,6 +25,13 @@ jobs:
25
run: |
26
Start-Process -FilePath .\mt5setup.exe -ArgumentList "/auto" -Wait
27
28
+ - name: Verify MetaTrader 5 Installation
29
+ run: |
30
+ if (!(Test-Path "C:\Program Files\MetaTrader 5\terminal64.exe")) {
31
+ Write-Error "MetaTrader 5 installation failed."
32
+ exit 1
33
+ }
34
+
35
- name: Install Python dependencies
36
37
python -m pip install --upgrade pip
0 commit comments