Skip to content

Commit

Permalink
[MAINT] Bump matlab-actions (#678)
Browse files Browse the repository at this point in the history
* Bump matlab-actions/run-command from 2.0.0 to 2.1.0

Bumps [matlab-actions/run-command](https://github.com/matlab-actions/run-command) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/matlab-actions/run-command/releases)
- [Commits](matlab-actions/run-command@v2.0.0...v2.1.0)

---
updated-dependencies:
- dependency-name: matlab-actions/run-command
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump matlab-actions/setup-matlab from 2.0.0 to 2.1.0

Bumps [matlab-actions/setup-matlab](https://github.com/matlab-actions/setup-matlab) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/matlab-actions/setup-matlab/releases)
- [Commits](matlab-actions/setup-matlab@v2.0.0...v2.1.0)

---
updated-dependencies:
- dependency-name: matlab-actions/setup-matlab
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
Remi-Gau and dependabot[bot] authored Mar 14, 2024
1 parent ad7b9bb commit b832ae5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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);
6 changes: 3 additions & 3 deletions .github/workflows/run_tests_matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}

Expand Down Expand Up @@ -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);

0 comments on commit b832ae5

Please sign in to comment.