Skip to content

Instantly share code, notes, and snippets.

@thiagolioy
Last active November 27, 2016 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagolioy/c7d9a26521650b724e5ef8b533f60af6 to your computer and use it in GitHub Desktop.
Save thiagolioy/c7d9a26521650b724e5ef8b533f60af6 to your computer and use it in GitHub Desktop.
Fastfile of blog post
fastlane_version "1.110.0"
default_platform :ios
platform :ios do
before_all do
# ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
cocoapods
end
desc "Runs all the tests"
lane :test do
scan(scheme: "Marvel")
slather(
output_directory: "coverage",
workspace: "Marvel.xcworkspace",
scheme: "Marvel",
proj: "Marvel.xcodeproj",
html: true
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment