From fb7d06dcdcbd1087dfd9c3ebbfa498ebcf2aec70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Coye=20de=20Brune=CC=81lis?= Date: Wed, 8 Nov 2023 14:23:56 +0100 Subject: [PATCH] fix: Make sure iOS CI runs in iOS Simulator --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e836239..d53e47e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,9 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Build - run: swift build + run: xcodebuild -scheme InfomaniakCore build -destination "platform=iOS Simulator,name=iPhone 13,OS=latest" - name: Test - run: swift test + run: xcodebuild -scheme InfomaniakCore test -destination "platform=iOS Simulator,name=iPhone 13,OS=latest" build_and_test_macOS: name: Build and Test project on macOS