chore(deps): bump androidxLifecycle from 2.8.1 to 2.8.2 in /android (… #1097
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build clientlib-ktx Sample App | |
on: | |
push: | |
branches: [ main ] | |
paths: [ 'android/**', '.github/**', 'examples/example-clientlib-ktx-app/**' ] | |
pull_request: | |
branches: [ main ] | |
paths: [ 'android/**', '.github/**', 'examples/example-clientlib-ktx-app/**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: examples/example-clientlib-ktx-app | |
steps: | |
# Setup | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
# Build | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle and run tests | |
run: ./gradlew build |