Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.10 to 1.9.23 #22
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: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: set up JDK 8, 11, 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
8 | |
11 | |
17 | |
- name: Set up Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Make dummy gradle.properties | |
run: (cd app; ./make_plain_gradle_properties.sh) | |
# Dependency Graph | |
# - name: Setup Graphviz environment | |
# uses: kamiazya/setup-graphviz@v1 | |
# | |
# - name: Generate Dependency Graph | |
# run: ./gradlew generateDependencyGraph | |
# | |
# - name: Upload Dependency Graph | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: Dependency Graph | |
# path: app/build/reports/dependency-graph/dependency-graph.png | |
# Generates a debug APK | |
- name: Build debug version with Gradle | |
run: ./gradlew assembleQuad5Debug | |
- name: Unit Test | |
run: ./gradlew test |