Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CodeCov #889

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: 2.1

orbs:
codecov: codecov/[email protected]

jobs:
build:
docker:
- image: circleci/android:latest
steps:
- checkout
- android/restore-gradle-cache
- run: gradlew assembleDebug # Build debug variant
- run: gradlew assembleRelease # Build release variant
- android/save-gradle-cache

test:
docker:
- image: circleci/android:latest
steps:
- checkout
- android/restore-gradle-cache
- run: gradlew testDebug # Run instrumentation tests
- run: gradlew connectedTestDebug # Run UI tests
- android/save-gradle-cache

deploy:
docker:
- image: circleci/android:latest
steps:
- checkout
- android/restore-gradle-cache
- run: gradlew assembleRelease # Build release variant
- android/save-gradle-cache

workflows:
build-test-deploy:
jobs:
- build
- test
- deploy
requires:
- build
- test
Loading