Skip to content

Bump org.jetbrains.kotlin.jvm from 2.4.0 to 2.4.10 #311

Bump org.jetbrains.kotlin.jvm from 2.4.0 to 2.4.10

Bump org.jetbrains.kotlin.jvm from 2.4.0 to 2.4.10 #311

Workflow file for this run

name: Kotlin CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Unit tests
run: bash ./gradlew test --stacktrace