Skip to content

Commit d60ae9e

Browse files
authored
Milestones/ms1 (#16)
* Closes #11 * Closes #13 * Closes #17 * Closes #18 * Closes #19 * Closes #6 * Closes #3 * Closes #12 * Closes #15
1 parent 0d75dc8 commit d60ae9e

File tree

103 files changed

+4361
-710
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+4361
-710
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/

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/build
77
/captures
88
.externalNativeBuild
9+
/projectFilesBackup
910

1011
# Project reports
1112
/reports

0 commit comments

Comments
 (0)