Skip to content

Commit

Permalink
Fixing github action matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
pariterre committed Aug 12, 2024
1 parent 36bc382 commit 03df1c9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run_matlab_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [R2021b, R2022a, R2022b, R2023a, R2023b, R2024a]
include:
- os: ubuntu-latest
label: linux-64
Expand All @@ -20,8 +22,7 @@ jobs:
- os: windows-latest
label: win-64
prefix: C:\Miniconda3\envs\ezc3d
- version: [R2021b, R2022a, R2022b, R2023a, R2023b, R2024a]
name: ${{ matrix.label }}
name: ${{ matrix.label }}_${{ matrix.version }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down Expand Up @@ -54,6 +55,8 @@ jobs:
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: ${{ matrix.version }}

- name: Build ezc3d
run: |
Expand Down

0 comments on commit 03df1c9

Please sign in to comment.