Skip to content

Update plugin com.android.library to v8.8.1 #1186

Update plugin com.android.library to v8.8.1

Update plugin com.android.library to v8.8.1 #1186

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Project Checkout
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug --stacktrace
- name: Run tests
run: ./gradlew testDebugUnitTest --stacktrace