Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
git clone https://github.com/spm/spm12.git --depth 1

- name: Test notebooks
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: |
root_dir = getenv('GITHUB_WORKSPACE');
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
release: ${{ matrix.matlab }}

- name: Run fast unit tests MATLAB
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run tests_matlab;

Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
release: ${{ matrix.matlab }}

- name: Run slow unit tests MATLAB
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab;

Expand Down Expand Up @@ -304,6 +304,6 @@ jobs:
release: ${{ matrix.matlab }}

- name: Run system tests MATLAB ${{ matrix.script }}
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};
6 changes: 3 additions & 3 deletions .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ jobs:

- name: Run fast unit tests MATLAB
if: matrix.test_type == 'unit' && matrix.mode == 'fast'
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run tests_matlab;

- name: Run slow unit tests MATLAB
if: matrix.test_type == 'unit' && matrix.mode == 'slow'
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab;

Expand All @@ -135,6 +135,6 @@ jobs:

- name: Run system tests MATLAB ${{ matrix.script }}
if: matrix.test_type == 'system'
uses: matlab-actions/run-command@v2.1.1
uses: matlab-actions/run-command@v2.2.1
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};
Loading