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 e8a378b commit 767f22aCopy full SHA for 767f22a
.github/workflows/test.yml
@@ -8,6 +8,7 @@ on:
8
9
jobs:
10
test-macos:
11
+ if: false
12
runs-on: macos-latest
13
steps:
14
- uses: actions/checkout@v3
@@ -61,4 +62,6 @@ jobs:
61
62
run: cmake --build build --config Release
63
64
- name: Test
- run: build/bin/Release/RobotCPPSDLTest.exe --gtest_filter=-*InteractiveMode --ci-mode true
65
+ run: |
66
+ # Use Windows-style path with .\ prefix
67
+ .\build\bin\Release\RobotCPPSDLTest.exe --gtest_filter=-*InteractiveMode --ci-mode true
0 commit comments