Skip to content

Commit 7a455b1

Browse files
author
Melih Aksoy
committed
Added codecov token
1 parent ec624bd commit 7a455b1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
- image: circleci/android:api-28
77
environment:
88
JVM_OPTS: -Xmx3200m
9+
CODECOV_TOKEN: "cd1376e1-2cfd-49a2-9f25-03ef69056b4d"
910
steps:
1011
- checkout
1112
- restore_cache:
@@ -32,7 +33,10 @@ jobs:
3233
# Tests
3334
- run:
3435
name: Tests
35-
command: fastlane test_all
36+
command: |
37+
fastlane test_all
38+
./gradlew jacocoTestReport
39+
bash <(curl -s https://codecov.io/bash)
3640
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
3741
path: build/reports/tests
3842
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/

0 commit comments

Comments
 (0)