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.
1 parent ec624bd commit 7a455b1Copy full SHA for 7a455b1
.circleci/config.yml
@@ -6,6 +6,7 @@ jobs:
6
- image: circleci/android:api-28
7
environment:
8
JVM_OPTS: -Xmx3200m
9
+ CODECOV_TOKEN: "cd1376e1-2cfd-49a2-9f25-03ef69056b4d"
10
steps:
11
- checkout
12
- restore_cache:
@@ -32,7 +33,10 @@ jobs:
32
33
# Tests
34
- run:
35
name: Tests
- command: fastlane test_all
36
+ command: |
37
+ fastlane test_all
38
+ ./gradlew jacocoTestReport
39
+ bash <(curl -s https://codecov.io/bash)
40
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
41
path: build/reports/tests
42
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
0 commit comments