We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6630ef6 commit 8056fd1Copy full SHA for 8056fd1
1 file changed
.github/workflows/build_win.yml
@@ -49,3 +49,18 @@ jobs:
49
with:
50
name: FastTrack
51
path: build/FastTrack
52
+
53
+ test_bundle:
54
+ runs-on: windows-latest
55
+ needs: build_win
56
+ steps:
57
+ - name: download artifact
58
+ uses: actions/download-artifact@v4
59
+ with:
60
+ name: FastTrack
61
+ path: FastTrack
62
63
+ - name: Run FastTrack executable
64
+ run: |
65
+ cd FastTrack
66
+ ./FastTrack-Cli.exe --help || echo "FastTrack-Cli.exe exited with code $LASTEXITCODE"
0 commit comments