Skip to content

Instantly share code, notes, and snippets.

@lordcodes
Created January 24, 2019 15:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lordcodes/3d4363c62fe63f6bac95e36a3ae2257e to your computer and use it in GitHub Desktop.
Save lordcodes/3d4363c62fe63f6bac95e36a3ae2257e to your computer and use it in GitHub Desktop.
Code for article "Adding Continuous Integration to your Android project"
version: 2.0
jobs:
build:
working_directory: ~/workspace
docker:
- image: circleci/android:api-28
steps:
- checkout
- run:
name: Run tests
command: ./gradlew lintDebug testDebugUnitTest
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment