Update Kotlin and KSP #2054
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 23 | |
- uses: gradle/actions/setup-gradle@v4 | |
with: | |
validate-wrappers: true | |
- name: Build with Gradle | |
run: ./gradlew build buildHealth --stacktrace | |
- name: Check code style | |
run: ./kotlinw .kts/ktlint.main.kts --fail-on-changes |