Skip to content

Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v1.9.24 #546

Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v1.9.24

Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v1.9.24 #546

Workflow file for this run

name: Android Build
on:
push:
branches:
- development
pull_request:
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
# Only write to the cache for builds on the 'development' branch
cache-read-only: ${{ github.ref != 'refs/heads/development' }}
- name: Build Project
run: ./gradlew assemble
- name: Run Tests
run: ./gradlew test
- name: Lint Checks
run: ./gradlew detektAll lintKotlin lint
- name: Dependency Sort Checks
run: ./gradlew checkSortDependencies