Explicitly list iPhone 15 as not supporting MFI, i.e Lightning keys. #404
Workflow file for this run
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: YubiKitTests | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build for device | |
run: | | |
cd YubiKit | |
./build.sh | |
cd .. | |
- name: Test on emulator | |
run: | | |
set -o pipefail && xcodebuild -sdk iphonesimulator -workspace YubiKit.xcworkspace -scheme YubiKit -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" test | xcpretty --test --color | |
- name: Upload artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: yubikit-ios | |
path: YubiKit/releases |