Skip to content

VIT-6643: VIT-6643: Catch up with API deprecations Pt.6 #398

VIT-6643: VIT-6643: Catch up with API deprecations Pt.6

VIT-6643: VIT-6643: Catch up with API deprecations Pt.6 #398

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run lint
run: ./gradlew lint
- uses: yutailang0119/action-android-lint@v3
with:
report-path: build/reports/*.xml
- name: Build with Gradle
run: ./gradlew :VitalClient:testDebugUnitTest
- name: Android Test Report
uses: asadmansr/[email protected]
if: ${{ always() }}