Skip to content

Target SDK 35 (includes lots of library updates) #542

Target SDK 35 (includes lots of library updates)

Target SDK 35 (includes lots of library updates) #542

Workflow file for this run

name: Build and test
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v4
- name: Gradle dependency cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
- name: Build
run: ./gradlew check assemble compileStableDebugAndroidTestSources