Skip to content

Commit 98e98f0

Browse files
Circle Test
1 parent f82bda8 commit 98e98f0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
macos:
6+
xcode: "10.2.1"
7+
steps:
8+
- checkout
9+
- run: xcodebuild clean build test -project DeviceIdentificator.xcodeproj -scheme DeviceIdentificator-iOS -destination "platform=iOS Simulator,name=iPhone 7" | xcpretty -f `xcpretty-travis-formatter`
10+
- run: bash <(curl -s https://codecov.io/bash) -cF iPhone -J 'DeviceIdentificator'
11+
- run: xcodebuild clean build test -project DeviceIdentificator.xcodeproj -scheme DeviceIdentificator-iOS -destination "platform=iOS Simulator,name=iPad Air 2" | xcpretty -f `xcpretty-travis-formatter`
12+
- run: bash <(curl -s https://codecov.io/bash) -cF iPad -J 'DeviceIdentificator'
13+
- run: xcodebuild clean build test -project DeviceIdentificator.xcodeproj -scheme DeviceIdentificator-tvOS -destination "platform=tvOS Simulator,name=Apple TV" | xcpretty -f `xcpretty-travis-formatter`
14+
- run: bash <(curl -s https://codecov.io/bash) -cF tvOS -J 'DeviceIdentificator'
15+
- run: swiftlint lint
16+
- run: pod lib lint

0 commit comments

Comments
 (0)