From af040e686820385f7727adf171e5d5282c5aa5f3 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Sat, 28 Oct 2023 13:47:37 +0200 Subject: [PATCH] Check on all supported macOS versions --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 451030fbb..5baa4de5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,16 +7,17 @@ on: - main jobs: - Macos: + macOS: strategy: fail-fast: false matrix: + os: [macos-11, macos-12, macos-13, macos-13-arm64] target: - native_dyn - iOS_arm64 - iOS_x86_64 - runs-on: macos-12 + runs-on: runs-on: ${{ matrix.os }} steps: - name: Checkout code