This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FizzBuzzTests/** | |
FizzBuzzUITests/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
excluded: # paths to ignore during linting. Takes precedence over `included`. | |
- Carthage | |
- Pods |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# iOS CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details. | |
# | |
version: 2 | |
jobs: | |
lint: | |
macos: | |
xcode: "9.2.0" | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xcodebuild clean test -workspace FizzBuzz.xcworkspace -scheme FizzBuzz -sdk iphonesimulator -destination "platform=iOS Simulator,OS=11.2,name=iPhone 8" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO -enableCodeCoverage YES | xcpretty -c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# iOS CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details. | |
# | |
version: 2 | |
jobs: | |
lint: | |
macos: | |
xcode: "9.2.0" | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# iOS CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details. | |
# | |
version: 2 | |
jobs: | |
lint: | |
macos: | |
xcode: "9.2.0" | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
curl -L --output SwiftLint.pkg --url http://github.com$(curl -s -L https://github.com/realm/SwiftLint/releases/latest | egrep -o '/realm/SwiftLint/releases/download/[0-9.]*/SwiftLint.pkg') | |
sudo installer -pkg SwiftLint.pkg -target / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# iOS CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details. | |
# | |
version: 1 | |
jobs: | |
test: | |
macos: | |
xcode: "9.2.0" | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xcodebuild clean test -workspace FizzBuzz.xcworkspace -scheme FizzBuzz -sdk iphonesimulator -destination "platform=iOS Simulator,OS=11.2,name=iPhone 8" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO | xcpretty -c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# Update all external dependencies | |
pod install |
NewerOlder