Skip to content

Commit

Permalink
Expand CI to multiple MATLAB versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tfcollins authored Aug 23, 2024
1 parent bda3125 commit a07dea1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
matlab-version: ['R2023a', 'R2023b', 'R2024a']

steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -15,9 +19,10 @@ jobs:
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: R2023b
release: ${{ matrix.matlab-version }}
products: DSP_System_Toolbox
- name: Compile Toolbox

- name: Test Designer
uses: matlab-actions/run-command@v2
with:
command: addpath(genpath('.'));runTests;exit()

0 comments on commit a07dea1

Please sign in to comment.