We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 63f296a + 64f8a9b commit ee6500eCopy full SHA for ee6500e
.circleci/config.yml
@@ -0,0 +1,27 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/code
5
+ docker:
6
+ - image: circleci/android:api-26-alpha
7
+ environment:
8
+ JVM_OPTS: -Xmx3200m
9
+ steps:
10
+ - checkout
11
+ - restore_cache:
12
+ key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
13
+ - run:
14
+ name: Download Dependencies
15
+ command: ./gradlew androidDependencies
16
+ - save_cache:
17
+ paths:
18
+ - ~/.gradle
19
20
21
+ name: Run Tests
22
+ command: ./gradlew lint test
23
+ - store_artifacts:
24
+ path: app/build/reports
25
+ destination: reports
26
+ - store_test_results:
27
+ path: app/build/test-results
circle.yml
0 commit comments