chore(deps): bump org.robolectric:robolectric from 4.10.3 to 4.11.1 in /android #484
Workflow file for this run
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-rxjava Sample App | |
on: | |
push: | |
branches: [ main ] | |
paths: [ 'android/**', '.github/**', 'examples/example-clientlib-rxjava-app/**' ] | |
pull_request: | |
branches: [ main ] | |
paths: [ 'android/**', '.github/**', 'examples/example-clientlib-rxjava-app/**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: examples/example-clientlib-rxjava-app | |
steps: | |
# Setup | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
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 |