-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add section to readme for running tests, add toc to readme, add githu…
…b actions workflow add missing newline at eof move pull request into right directory
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Swift Integration Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull-request: | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
destination: ['platform=iOS Simulator,OS=latest,name=iPhone 12 Pro Max'] | ||
|
||
steps: | ||
- name: Checkout Code | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build and Test | ||
run: xcodebuild test -project FantasmoSDK.xcodeproj -scheme FantasmoSDKTests -destination "${destination}" | ||
env: | ||
destination: ${{ matrix.destination }} |
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