forked from ProcedureKit/ProcedureKit
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 1.2 KB
/
ci.yml
File metadata and controls
35 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: ProcedureKit CI
on: push
jobs:
macOS:
name: Test macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: macOS
run: xcodebuild -project "ProcedureKit.xcodeproj" -scheme "Mac" -destination "platform=macOS" clean test | tee .ci/results/xcodebuild-mac.log
iOS:
name: Test iOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: iOS
run: xcodebuild -project "ProcedureKit.xcodeproj" -scheme "iOS" -destination "platform=iOS Simulator,name=iPhone X" clean test | tee .ci/results/xcodebuild-ios.log
tvOS:
name: Test tvOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: tvOS
run: xcodebuild -project "ProcedureKit.xcodeproj" -scheme "tvOS" -destination "platform=tvOS Simulator,name=Apple TV" clean test | tee .ci/results/xcodebuild-tvOS.log
stressTest:
name: Stress Test
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Stress Test
run: xcodebuild -project "ProcedureKit.xcodeproj" -scheme "Stress Tests" -destination "platform=macOS" clean test | tee .ci/results/xcodebuild-stress.log