Skip to content

Commit

Permalink
Fix wrong quotation sign
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Abrahão <[email protected]>
  • Loading branch information
patrickpa committed May 24, 2024
1 parent c4d4170 commit 7177c30
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build-on-change-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,15 @@ jobs:
- name: Test
if: github.event_name == 'pull_request'
run: |
echo Starting tests...
Write-Output "Starting tests..."
cd "$env:WORKING_PATH\qc-framework\qc-framework\build\test\function"
Start-Process -FilePath “examples\example_checker_bundle\src\example_checker_bundle_tester.exe”
Start-Process -FilePath “report_modules\report_module_gui\src\report_module_gui_tester.exe”
Start-Process -FilePath “report_modules\report_module_text\src\report_module_text_tester.exe”
Start-Process -FilePath “result_pooling\src\result_pooling_tester.exe”
Start-Process -FilePath "examples\example_checker_bundle\src\example_checker_bundle_tester.exe"
Start-Process -FilePath "report_modules\report_module_gui\src\report_module_gui_tester.exe"
Start-Process -FilePath "report_modules\report_module_text\src\report_module_text_tester.exe"
Start-Process -FilePath "result_pooling\src\result_pooling_tester.exe"
Start-Process -FilePath "runtime\src\runtime_tester.exe"
echo All tests done.
Write-Output "All tests done."
shell: pwsh

0 comments on commit 7177c30

Please sign in to comment.