You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create ci.yml with the following code under. I tested locally so it should work when the project is migrated to Swift 5.
name: TABObserverSet CIon:
workflow_dispatch: # This allows you to manually run the workflow from GitHub's web UIpull_request:
branches: [ '*' ] # This means this workflow will run when any PR is created or any changes are pushed to a PR, on any branchjobs:
test_xcode11_ios13:
name: Run tests on Xcode 11 and iOS 13runs-on: macOS-lateststeps:
- name: Checkoutuses: actions/checkout@v1
- name: Set Xcode version to 11.6run: sudo xcode-select -switch /Applications/Xcode_11.6.app
- name: Build for testingrun: xcodebuild build-for-testing -workspace Example/TABObserverSet.xcworkspace -scheme TABObserverSet-Example -configuration Debug -sdk iphonesimulator13.6 -destination "OS=13.6,name=iPhone 11 Pro"
- name: Test on iPhone 11 Prorun: xcodebuild test-without-building -workspace Example/TABObserverSet.xcworkspace -scheme TABObserverSet-Example -configuration Debug -sdk iphonesimulator13.6 -destination "OS=13.6,name=iPhone 11 Pro" -enableCodeCoverage YES
The text was updated successfully, but these errors were encountered:
In order to update to GitHub Actions.
ci.yml
with the following code under. I tested locally so it should work when the project is migrated to Swift 5.The text was updated successfully, but these errors were encountered: