dev
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-01-26 14:48:41 +07:00
parent 329000d284
commit 300383e523
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM gradle:8.14.2-jdk17 AS build FROM gradle:8.14.2-jdk21 AS build
WORKDIR /app WORKDIR /app
@@ -6,7 +6,7 @@ COPY . .
RUN gradle --no-daemon clean build -x test RUN gradle --no-daemon clean build -x test
FROM eclipse-temurin:17-jre FROM eclipse-temurin:21-jre
WORKDIR /app WORKDIR /app
+1 -1
View File
@@ -22,5 +22,5 @@ tasks.test {
useJUnitPlatform() useJUnitPlatform()
} }
kotlin { kotlin {
jvmToolchain(17) jvmToolchain(21)
} }