diff --git a/.github/workflows/zashi-tests.yml b/.github/workflows/zashi-tests.yml index dc40cc78d..a94e26f9e 100644 --- a/.github/workflows/zashi-tests.yml +++ b/.github/workflows/zashi-tests.yml @@ -9,16 +9,13 @@ jobs: permissions: contents: read - runs-on: macos-13 - strategy: - matrix: - destination: ['platform=iOS Simulator,OS=15.0,name=iPhone 15 Pro'] - + runs-on: macos-latest + steps: - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 timeout-minutes: 1 - name: Select Xcode version - run: sudo xcode-select -s '/Applications/Xcode_15.0.1.app/Contents/Developer' + run: sudo xcode-select -s '/Applications/Xcode_15.2.app/Contents/Developer' - name: Run tests timeout-minutes: 5 - run: xcodebuild test -scheme secant-testnet -project secant.xcodeproj -destination "${destination}" | xcpretty && exit ${PIPESTATUS[0]} + run: xcodebuild test -scheme secant-testnet -project secant.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=15.0'