Skip to content

Commit f8112fa

Browse files
authored
Update test-setup-matlab.yml
1 parent 45ac67e commit f8112fa

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test-setup-matlab.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
jobs:
7-
unit-tests:
7+
setup-matlab:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
fail-fast: False
@@ -41,3 +41,11 @@ jobs:
4141
run: |
4242
cd scripts
4343
python -m setup_matlab -d
44+
45+
- name: Run tests (Mac Intel)
46+
if: matrix.platform == 'Mac'
47+
run: mwpython -m unittest discover tests -v
48+
49+
- name: Run tests (Linux)
50+
if: matrix.os_name != 'Mac'
51+
run: python -m unittest discover tests -v

0 commit comments

Comments
 (0)