Skip to content

Build: Update to Kotlin 2.0 and update other dependencies #1022

Build: Update to Kotlin 2.0 and update other dependencies

Build: Update to Kotlin 2.0 and update other dependencies #1022

Workflow file for this run

name: Android CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build with Gradle
run: ./gradlew assembleDebug lintVitalRelease
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
retention-days: 10