Skip to content

chore: update dependency org.jetbrains.kotlin.jvm to v1.9.22 #345

chore: update dependency org.jetbrains.kotlin.jvm to v1.9.22

chore: update dependency org.jetbrains.kotlin.jvm to v1.9.22 #345

Workflow file for this run

name: "CI"
on:
push:
pull_request:
concurrency:
cancel-in-progress: true
group: build-${{ github.event.pull_request.number || github.ref }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '21' ]
name: ${{ matrix.java }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
check-latest: true
cache: 'gradle'
- name: Run build and tests
run: ./gradlew clean build test --stacktrace --no-daemon