diff --git a/.github/workflows/run_examples.yml b/.github/workflows/run_examples.yml index 2b82c350..9cae0981 100644 --- a/.github/workflows/run_examples.yml +++ b/.github/workflows/run_examples.yml @@ -38,6 +38,6 @@ jobs: make install - name: Run commands - uses: matlab-actions/run-command@v2.0.0 + uses: matlab-actions/run-command@v2.1.0 with: command: cd('demos/notebooks'); success = test_notebooks(); assert(success); diff --git a/.github/workflows/run_tests_matlab.yml b/.github/workflows/run_tests_matlab.yml index 5baed0dd..7a9f0668 100644 --- a/.github/workflows/run_tests_matlab.yml +++ b/.github/workflows/run_tests_matlab.yml @@ -62,14 +62,14 @@ jobs: - name: Run slow tests if: matrix.test == 'slow' - uses: matlab-actions/run-command@v2.0.0 + uses: matlab-actions/run-command@v2.1.0 with: command: run MOxUnit/MOxUnit/moxunit_set_path(); addpath(fullfile(pwd, 'MOcov', 'MOcov')); global SLOW; SLOW=true; addpath(getenv('GITHUB_WORKSPACE')); success = run_tests(); assert(success); - name: Run fast tests if: matrix.test == 'fast' - uses: matlab-actions/run-command@v2.0.0 + uses: matlab-actions/run-command@v2.1.0 with: command: run MOxUnit/MOxUnit/moxunit_set_path(); addpath(fullfile(pwd, 'MOcov', 'MOcov')); addpath(getenv('GITHUB_WORKSPACE')); success = run_tests(); assert(success);