From 230c21189ee9c12b9ef2530870064e33049b4ed3 Mon Sep 17 00:00:00 2001 From: Lucas Romano Date: Fri, 29 Nov 2024 19:49:13 -0300 Subject: [PATCH] fix pr workflow --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45a4f5e..3ee3226 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ jobs: runs-on: macos-latest strategy: matrix: - schemes: [iOS, macOS, tvOS, watchOS] build-config: - { scheme: "Cache-iOS", @@ -37,7 +36,7 @@ jobs: - name: Build run: | xcodebuild clean build \ - -workspace 'Cache.xcproject' \ + -project 'Cache.xcodeproj' \ -scheme '${{ matrix.build-config['scheme'] }}' \ -sdk '${{ matrix.build-config['sdk'] }}' \ -destination '${{ matrix.build-config['destination'] }}' @@ -49,7 +48,7 @@ jobs: fi xcodebuild test \ - -workspace 'Cache.xcproject' \ + -project 'Cache.xcodeproj' \ -scheme '${{ matrix.build-config['scheme'] }}' \ -sdk '${{ matrix.build-config['sdk'] }}' \ -destination '${{ matrix.build-config['destination'] }}'