Skip to content

End of v2

End of v2 #258

Workflow file for this run

name: Android CI
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout repo
uses: actions/checkout@v1
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Test and Build
run: ./gradlew build
- name: Generate Code-Coverage report
run: ./gradlew jacoco
- name: Push Code-Coverage Report to codecov.io
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)