Skip to content

Update jbr-compose

Update jbr-compose #27

Workflow file for this run

name: Android CI
on:
push:
branches: [ "master" ]
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- docs
- iosApp
pull_request:
branches: [ "master" ]
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- docs
- iosApp
concurrency:
group: build-android-${{ github.ref }}
cancel-in-progress: true
jobs:
build_android:
name: Build Android app
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew --scan --stacktrace assembleDebug