Skip to content

Commit 36b18ec

Browse files
authored
Merge pull request #135 from mathworks/test-ci-changes
add linux to CI tests
2 parents e02fc41 + 328a395 commit 36b18ec

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/git-ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,27 @@ jobs:
1414
# Set up the job strategy matrix to define the different job configurations.
1515
matrix:
1616
# List of platforms on which to run the tests.
17-
platform: [windows-latest]
17+
platform: [ubuntu-latest, windows-latest]
1818

1919
# List of MATLAB releases over which to run the tests.
20-
matlab-version: [R2023b, R2024a, R2024b]
20+
matlab-version: [R2023b, R2024a, R2024b, latest]
21+
22+
# UITest with gestures only from R2023b and later.
2123

2224
# We don't define any startup options until we reach R2023b (handled separately below).
2325
# matlab-startup-options: [ '' ]
2426

2527
# Windows/Mac are supported from R2021a onwards. Ubuntu is supported from R2020b onwards.
26-
# Exclude the Windows job on R2020b.
28+
29+
# Exclude unsupported Linux jobs prior to R2024b.
30+
exclude:
31+
32+
- platform: ubuntu-latest
33+
matlab-version: R2023b
2734

35+
- platform: ubuntu-latest
36+
matlab-version: R2024a
37+
2838
# Specify the platform that the job will run on.
2939
runs-on: ${{ matrix.platform }}
3040

0 commit comments

Comments
 (0)