diff --git a/.github/workflows/run_examples.yml b/.github/workflows/run_examples.yml index a69606c3..d87474be 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@v1.2.2 + uses: matlab-actions/run-command@v1.2.3 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 f2490748..6f673cb6 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@v1.2.2 + uses: matlab-actions/run-command@v1.2.3 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@v1.2.2 + uses: matlab-actions/run-command@v1.2.3 with: command: run MOxUnit/MOxUnit/moxunit_set_path(); addpath(fullfile(pwd, 'MOcov', 'MOcov')); addpath(getenv('GITHUB_WORKSPACE')); success = run_tests(); assert(success);