Skip to content

Instantly share code, notes, and snippets.

@ValeryPonomarenko
Created October 15, 2018 09:41
Show Gist options
  • Save ValeryPonomarenko/1a3c53612a8b767c5d19705a4ec18bf5 to your computer and use it in GitHub Desktop.
Save ValeryPonomarenko/1a3c53612a8b767c5d19705a4ec18bf5 to your computer and use it in GitHub Desktop.
Android CircleCI
unit-tests:
<<: *defaults
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Install fastlane
command: bundle install
- run:
name: Run the unit tests
command: bundle exec fastlane unit_tests
- store_artifacts:
path: app/build/reports
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment