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