From 292e3cb580eccfca94e5273325231f69be82a171 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Wed, 8 May 2024 11:06:43 -0400 Subject: [PATCH] Add support for building and testing MATLAB interface on macos-14 --- .github/workflows/matlab.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/matlab.yml b/.github/workflows/matlab.yml index 2ae33d1e8d6c6..02f52298998d7 100644 --- a/.github/workflows/matlab.yml +++ b/.github/workflows/matlab.yml @@ -98,9 +98,15 @@ jobs: select-by-folder: matlab/test strict: true macos: - name: AMD64 macOS 12 MATLAB + name: ${{ matrix.architecture }} macOS ${{ matrix.macos-version }} MATLAB runs-on: macos-12 if: ${{ !contains(github.event.pull_request.title, 'WIP') }} + strategy: + include: + - architecture: AMD64 + macos-version: "12" + - architecture: ARM64 + macos-version: "14" steps: - name: Check out repository uses: actions/checkout@v4