forked from mac-gallagher/Shuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
14 lines (12 loc) · 828 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: swift
osx_image: xcode12.4
matrix:
include:
- name: "Run SwiftLint"
script: xcodebuild -workspace Example/Shuffle.xcworkspace -scheme SwiftLint -sdk iphonesimulator -destination platform="iOS Simulator,name=iPhone 11 Pro Max,OS=14.4"
- name: "Build Framework & Example Project"
script: cd Example/ && pod install && xcodebuild -workspace Shuffle.xcworkspace -scheme ShuffleExample -sdk iphonesimulator -destination platform="iOS Simulator,name=iPhone 11 Pro Max,OS=14.4"
- name: "Run Unit Tests"
script: cd Example/ && pod install && xcodebuild test -workspace Shuffle.xcworkspace -scheme ShuffleTests -sdk iphonesimulator -destination platform="iOS Simulator,name=iPhone 11 Pro Max,OS=14.4"
# upload codecov report
after_success: bash <(curl -s https://codecov.io/bash) -J 'Shuffle'