Skip to content

Instantly share code, notes, and snippets.

View luismachado's full-sized avatar

Luis Machado luismachado

View GitHub Profile
FizzBuzzTests/**
FizzBuzzUITests/**
excluded: # paths to ignore during linting. Takes precedence over `included`.
- Carthage
- Pods
# 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:
#!/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
# 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:
# 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:
#!/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 /
# 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:
#!/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
#!/bin/bash
set -e
# Update all external dependencies
pod install