From 24d25b3e2ebfb1780d9fe92baff446e64fddc8b3 Mon Sep 17 00:00:00 2001 From: Ko Nagase Date: Sat, 16 Mar 2024 02:06:33 +0900 Subject: [PATCH] Add macos-14 to macos CI (#2619) --- .github/workflows/macos.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5887eeee78..2386333f2b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -41,7 +41,12 @@ permissions: jobs: build: name: macos - runs-on: macos-latest + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: [macos-latest, macos-14] steps: - name: Checkout repository