From 02fd3165eb7ede4ef0b1b5abe3184b435addfc27 Mon Sep 17 00:00:00 2001 From: xRuiAlves Date: Mon, 20 May 2024 09:25:03 +0100 Subject: [PATCH] Revert "Remove OS from matrix in 'test' CI job" This reverts commit 318523842bb75b0ceb6e5f6b99166ff38f088f89. --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48fe54b..e8ddc8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,20 +4,22 @@ on: [push] jobs: test: - name: "Build and test Velocidi SDK using [xcode${{ matrix.xcode }}, sdk${{ matrix.sdk }}, ${{ matrix.device }}]" + name: "Build and test Velocidi SDK using [${{ matrix.os }}, xcode${{ matrix.xcode }}, sdk${{ matrix.sdk }}, ${{ matrix.device }}]" env: WORKSPACE: "VelocidiSDK.xcworkspace" SCHEME: "VelocidiSDK" strategy: matrix: include: - - xcode: "11.7.0" + - os: "macos-latest" + xcode: "11.7.0" sdk: "13.7" device: "iPhone 11" - - xcode: "12.4" + - os: "macos-latest" + xcode: "12.4" sdk: "14.4" device: "iPhone 11 Pro Max" - runs-on: "macos-latest" + runs-on: "${{ matrix.os }}" steps: - uses: actions/checkout@v4 - uses: maxim-lobanov/setup-xcode@v1