diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 3e7354a..59aaa96 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -20,20 +20,11 @@ jobs: with: xcode-version: latest-stable - - name: Build with xcodebuild + - name: Build and Test with xcodebuild run: | - xcodebuild clean build \ + xcodebuild clean build test \ -scheme PhantomSwift \ - -destination 'platform=iOS Simulator,name=iPhone 16' \ - CODE_SIGN_IDENTITY="" \ - CODE_SIGNING_REQUIRED=NO \ - CODE_SIGNING_ALLOWED=NO - - - name: Test with xcodebuild - run: | - xcodebuild test \ - -scheme PhantomSwift \ - -destination 'platform=iOS Simulator,name=iPhone 16' \ + -destination 'platform=iOS Simulator,name=iPhone SE (3rd generation)' \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO \ CODE_SIGNING_ALLOWED=NO