zetbaitsu/Cekrek

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: android
dist: trusty
android:
  components:
    # Uncomment the lines below if you want to
    # use the latest revision of Android SDK Tools
    # - tools
    # - platform-tools

    # The BuildTools version used by your project
    - build-tools-29.0.3

    # The SDK version used to compile your project
    - android-29

    # Additional components
    - extra-google-google_play_services
    - extra-google-m2repository
    - extra-android-m2repository

    # Specify at least one system image,
    # if you need to run emulator(s) during your tests
    - sys-img-x86-android-21
before_script:
  - touch local.properties
script:
  - ./gradlew clean build jacocoTestReleaseUnitTestReport
after_success:
  - bash <(curl -s https://codecov.io/bash)