Merge pull request #46 from CSolanaM/develop #217
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: test | |
on: push | |
jobs: | |
build: | |
name: test | |
runs-on: macOS-12 | |
steps: | |
- name: checkout | |
uses: actions/checkout@master | |
- name: swift test | |
run: | | |
# TODO: @CSolanaM macOS tests not passing because CI screen scale factor is 1, local is 2 | |
# xcodebuild test -destination platform="macOS" -scheme "SkeletonUISnapshotTests" | |
# xcodebuild test -destination name="Apple TV" -scheme "SkeletonUISnapshotTests" | |
# xcodebuild test -destination name="Apple TV 4K (3rd generation)" -scheme "SkeletonUISnapshotTests" | |
xcodebuild test -destination name="iPhone 8" -scheme "SkeletonUISnapshotTests" | |
xcodebuild test -destination name="iPhone 14 Pro Max" -scheme "SkeletonUISnapshotTests" | |
xcodebuild test -destination name="iPad Pro (12.9-inch) (6th generation)" -scheme "SkeletonUISnapshotTests" |