From f4785b2d2a35bb757680a3eb686cfb7577f7d2f5 Mon Sep 17 00:00:00 2001 From: Mast Date: Thu, 10 Oct 2024 16:25:12 -0700 Subject: [PATCH] Split out MATLAB version for Windows and Linux as well --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04814ae..8fff749 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,16 @@ jobs: uses: matlab-actions/setup-matlab@v2.2.0 with: release: R2023b - - name: Set up MATLAB - if: runner.os != 'macOS' + - name: Set up MATLAB (Windows) + if: runner.os == 'Windows' uses: matlab-actions/setup-matlab@v2.2.0 with: release: R2022b + - name: Set up MATLAB (Linux) + if: runner.os == 'Linux' + uses: matlab-actions/setup-matlab@v2.2.0 + with: + release: R2023a - name: Set up MEX uses: matlab-actions/run-command@v2 with: