Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Aug 27, 2019
1 parent b01e06d commit 395a651
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: 'Select Xcode 10.3'
run: sudo xcode-select -s /Applications/Xcode_10.3.app
- name: 'Test'
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-macOS | xcpretty --Diff; exit ${PIPESTATUS[0]}
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-macOS | xcpretty --color; exit ${PIPESTATUS[0]}
test-ios:
name: Test iOS
runs-on: macOS-10.14
Expand All @@ -30,7 +30,7 @@ jobs:
- name: 'Select Xcode 10.3'
run: sudo xcode-select -s /Applications/Xcode_10.3.app
- name: 'Test'
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-iOS -destination "platform=iOS Simulator,name=iPhone SE" | xcpretty --Diff; exit ${PIPESTATUS[0]}
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-iOS -destination "platform=iOS Simulator,name=iPhone SE" | xcpretty --color; exit ${PIPESTATUS[0]}
test-tvos:
name: Test tvOS
runs-on: macOS-10.14
Expand All @@ -40,7 +40,7 @@ jobs:
- name: 'Select Xcode 10.3'
run: sudo xcode-select -s /Applications/Xcode_10.3.app
- name: 'Test'
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-tvOS -destination "platform=tvOS Simulator,name=Apple TV 4K (at 1080p)" | xcpretty --Diff; exit ${PIPESTATUS[0]}
run: xcodebuild test -project Diff.xcodeproj -scheme Diff-tvOS -destination "platform=tvOS Simulator,name=Apple TV 4K (at 1080p)" | xcpretty --color; exit ${PIPESTATUS[0]}
test-watchos:
name: Build watchOS
runs-on: macOS-10.14
Expand All @@ -50,4 +50,4 @@ jobs:
- name: 'Select Xcode 10.3'
run: sudo xcode-select -s /Applications/Xcode_10.3.app
- name: 'Build'
run: xcodebuild build -project Diff.xcodeproj -scheme Diff-watchOS -destination "platform=watchOS Simulator,name=Apple Watch Series 4 - 40mm" | xcpretty --Diff; exit ${PIPESTATUS[0]}
run: xcodebuild build -project Diff.xcodeproj -scheme Diff-watchOS -destination "platform=watchOS Simulator,name=Apple Watch Series 4 - 40mm" | xcpretty --color; exit ${PIPESTATUS[0]}

0 comments on commit 395a651

Please sign in to comment.