-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (21 loc) · 747 Bytes
/
.travis.yml
File metadata and controls
26 lines (21 loc) · 747 Bytes
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
language: swift
osx_image: xcode10.2
xcode_workspace: SwiftyJSONAccelerator.xcworkspace
xcode_scheme: SwiftyJSONAccelerator
xcode_sdk: macosx10.14
before_install:
- gem install xcpretty
- gem install slather
- gem install cocoapods
- gem install xcov
addons:
homebrew:
packages:
- swiftlint
- swiftformat
update: true
script:
- xcodebuild -workspace SwiftyJSONAccelerator.xcworkspace -scheme "SwiftyJSONAccelerator" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test
after_success:
- xcov -w SwiftyJSONAccelerator.xcworkspace -s SwiftyJSONAccelerator xcov_output --coveralls_service_name travis-ci --coveralls_service_job_id $TRAVIS_JOB_ID
- bash <(curl -s https://codecov.io/bash) -J 'SwiftyJSONAccelerator'