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