Merge branch 'feature/SP-80-Stöd-för-att-återställa-till-Menu-mode' i… #430
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
# We must use older simulators on Intel macs, otherwise webkit fails to load. | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "14.1" | |
- name: Prepare iOS 15.5 simulator | |
run: | | |
sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes | |
sudo ln -s /Applications/Xcode_13.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.5.simruntime | |
xcrun simctl create "iPhone 8 iOS15.5" "com.apple.CoreSimulator.SimDeviceType.iPhone-8" "com.apple.CoreSimulator.SimRuntime.iOS-15-5" | |
- name: Run Unit Tests #${{ matrix.macOS }} | |
run: xcodebuild -scheme SwedbankPaySDK -destination 'platform=iOS Simulator,name=iPhone 8 iOS15.5,OS=15.5' test | |
# If there are gitHub errors, debug by listing destinations: | |
#- name: Show Available Destinations | |
# run: xcodebuild -scheme SwedbankPaySDK -showdestinations | |
#<XCODE_PATH>/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ <IOS_VERSION>.simruntime |