Skip to content

Commit a07dea1

Browse files
authored
Expand CI to multiple MATLAB versions
1 parent bda3125 commit a07dea1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ jobs:
66
build:
77
name: Run Tests
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
matlab-version: ['R2023a', 'R2023b', 'R2024a']
12+
913
steps:
1014
- name: Check out repository
1115
uses: actions/checkout@v3
@@ -15,9 +19,10 @@ jobs:
1519
- name: Set up MATLAB
1620
uses: matlab-actions/setup-matlab@v2
1721
with:
18-
release: R2023b
22+
release: ${{ matrix.matlab-version }}
1923
products: DSP_System_Toolbox
20-
- name: Compile Toolbox
24+
25+
- name: Test Designer
2126
uses: matlab-actions/run-command@v2
2227
with:
2328
command: addpath(genpath('.'));runTests;exit()

0 commit comments

Comments
 (0)