Skip to content

Commit 0472fc8

Browse files
committed
buildfile default
1 parent 08db927 commit 0472fc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/composite-nomex/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ runs:
3030
tasks: test:java test:java_exe
3131

3232

33-
- name: Java Test (< R2024b)
34-
if: ${{ !contains(matrix.startup-options, '-nojvm') && matrix.release >= 'R2022b' && matrix.release < 'R2024b' }}
33+
- name: Java Test (R2023b..R2024a)
34+
if: ${{ !contains(matrix.startup-options, '-nojvm') && matrix.release >= 'R2023b' && matrix.release < 'R2024b' }}
3535
uses: matlab-actions/run-build@v2
3636
with:
3737
startup-options: ${{ matrix.startup-options }}

test_main.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function test_main(context, sel)
22
arguments
33
context {mustBeScalarOrEmpty} = []
4-
sel {mustBeScalarOrEmpty} = ~HasTag("exe") & ~HasTag("mex")
4+
sel {mustBeScalarOrEmpty} = ~HasTag("exe") & ~HasTag("mex") & ~HasTag("java_exe")
55
end
66

77
import matlab.unittest.TestRunner

0 commit comments

Comments
 (0)