Bump com.google.devtools.ksp from 2.0.21-1.0.27 to 2.0.21-1.0.28 in the compose-kotlin group #412
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: Android CI | |
on: [ push, pull_request ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Project Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Android Build | |
uses: ./.github/actions/setup-android-build | |
- name: Build | |
run: ./gradlew assemble --stacktrace | |
- name: Upload APK | |
if: success() | |
uses: actions/upload-artifact@v4 | |
with: | |
path: app/build/outputs/apk/debug/*.apk | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Project Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Android Build | |
uses: ./.github/actions/setup-android-build | |
- name: Build | |
run: ./gradlew lint --stacktrace |