Skip to content

Update to agp 8.4.1, gradle 8.6 (#278) #439

Update to agp 8.4.1, gradle 8.6 (#278)

Update to agp 8.4.1, gradle 8.6 (#278) #439

Workflow file for this run

name: Build & test
on:
push:
branches:
- develop
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Check dependencyGuard
run: ./gradlew dependencyGuard
- name: Check spotless
run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --stacktrace
- name: Check lint
run: ./gradlew lintDebug --stacktrace
- name: Build all build type and flavor permutations
run: ./gradlew assemble --stacktrace
-x :macrobenchmark:collectNonMinifiedReleaseBaselineProfile
-x :macrobenchmark:pixel6Api34NonMinifiedReleaseAndroidTest
- name: Run local tests
run: ./gradlew testDebug --stacktrace