Skip to content

Commit 19e0d38

Browse files
mondainCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent a21a9bd commit 19e0d38

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,10 @@ jobs:
9696
run: cmake --build build --parallel
9797

9898
- name: Test
99-
run: ctest --test-dir build -C Debug --output-on-failure
99+
shell: bash
100+
run: |
101+
if [ "${{ runner.os }}" = "Windows" ]; then
102+
ctest --test-dir build -C Debug --output-on-failure
103+
else
104+
ctest --test-dir build --output-on-failure
105+
fi

0 commit comments

Comments
 (0)