forked from CSolanaM/SkeletonUI
-
Notifications
You must be signed in to change notification settings - Fork 0
18 lines (18 loc) · 879 Bytes
/
test.yml
File metadata and controls
18 lines (18 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: test
on: push
jobs:
build:
name: test
runs-on: macOS-11
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 (2nd generation)" -scheme "SkeletonUISnapshotTests"
xcodebuild test -destination name="iPhone 8" -scheme "SkeletonUISnapshotTests"
xcodebuild test -destination name="iPhone 13 Pro Max" -scheme "SkeletonUISnapshotTests"
xcodebuild test -destination name="iPad Pro (12.9-inch) (5th generation)" -scheme "SkeletonUISnapshotTests"