diff --git a/.github/workflows/run_examples.yml b/.github/workflows/run_examples.yml index 2b82c350..2b115d20 100644 --- a/.github/workflows/run_examples.yml +++ b/.github/workflows/run_examples.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Install MATLAB - uses: matlab-actions/setup-matlab@v2.0.0 + uses: matlab-actions/setup-matlab@v2.1.0 with: release: R2023a @@ -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..12f4b5a2 100644 --- a/.github/workflows/run_tests_matlab.yml +++ b/.github/workflows/run_tests_matlab.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Install MATLAB - uses: matlab-actions/setup-matlab@v2.0.0 + uses: matlab-actions/setup-matlab@v2.1.0 with: release: ${{matrix.version}} @@ -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);