Skip to content

Pass the code under kotlin #87

Pass the code under kotlin

Pass the code under kotlin #87

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
check:
name: Check
runs-on: macos-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
distribution: 'adopt-openj9'
java-version: 11
- name: Assembling app debug flavor
run: ./gradlew :app:assembleDebug
- name: run java unit tests
run: ./gradlew rootCoverageReport -Penable_android_test=false -Penable_unit_test=true -Pcoverage
- name: upload code coverage report
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./build/reports/jacoco.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true