Skip to content

Commit c86161b

Browse files
committed
Improvements to windows specific testing
1 parent 89c346f commit c86161b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/simple-test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,14 @@ jobs:
4848
make
4949
bash
5050
51-
# Run the test
52-
- name: Run simple test
51+
# Run the test on Unix systems
52+
- name: Run simple test (Unix)
53+
if: runner.os != 'Windows'
54+
run: bash test/simple.test.sh
55+
56+
# Run the test on Windows with MSYS2 environment
57+
- name: Run simple test (Windows)
58+
if: runner.os == 'Windows'
59+
shell: msys2 {0}
5360
run: bash test/simple.test.sh
5461

0 commit comments

Comments
 (0)