fix(deps): update dependency androidx.compose.compiler:compiler to v1.5.15 #810
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: Android CI | |
on: | |
pull_request: | |
push: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
file-changes: | |
runs-on: ubuntu-latest | |
outputs: | |
any: ${{ steps.changed-files.outputs.any_changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
.github/workflows/pr_ci.yml | |
gradle/libs.versions.toml | |
**/*.kt | |
**/*.kts | |
**/*.xml | |
check-codestyle: | |
needs: [ file-changes ] | |
runs-on: ubuntu-latest | |
if: needs.file-changes.outputs.any == 'true' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v4.2.1 | |
with: | |
distribution: "zulu" | |
java-version: "21" | |
cache: "gradle" | |
- name: Check codestyle | |
uses: gradle/gradle-build-action@v3.5.0 | |
with: | |
arguments: spotlessCheck | |
gradle-home-cache-cleanup: true | |
build-apks: | |
needs: [ check-codestyle ] | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest ] | |
runs-on: ${{ matrix.os }} | |
if: needs.file-changes.outputs.any == 'true' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v4.2.1 | |
with: | |
distribution: "zulu" | |
java-version: "21" | |
cache: "gradle" | |
- name: Build debug APKs | |
uses: gradle/gradle-build-action@v3.5.0 | |
with: | |
arguments: assembleDebug | |
gradle-home-cache-cleanup: true | |
env: | |
GITHUB_CI: true | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
- name: Upload debug APKs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Debug APKs | |
path: app/build/outputs/apk/debug/*.apk |