Skip to content

Commit 209e8c1

Browse files
committed
fix tests
1 parent 6ceca25 commit 209e8c1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/testing.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,13 @@ jobs:
144144
cmake .
145145
cmake --build . --config ${{ matrix.build_type }} -j 3
146146
147-
- name: Run tests
147+
- name: Run tests (Windows)
148+
if: ${{ matrix.os == 'windows-latest' && steps.build.outcome == 'success' }}
149+
run: |
150+
Raven.exe
151+
Raven.exe -v
152+
- name: Run tests (Ubuntu/macOS)
153+
if: ${{ matrix.os != 'windows-latest' && steps.build.outcome == 'success' }}
148154
run: |
149-
Raven
150-
Raven -v
155+
./Raven
156+
./Raven -v

0 commit comments

Comments
 (0)