last dance mb
Some checks failed
CI / Gradle / build (push) Failing after 14m14s

This commit is contained in:
2026-05-29 18:02:57 +03:00
parent 8dc151af96
commit 7d36e86f85
2 changed files with 20 additions and 14 deletions

13
.runner Normal file
View File

@@ -0,0 +1,13 @@
{
"WARNING": "This file is automatically generated by act-runner. Do not edit it manually unless you know what you are doing. Removing this file will cause act runner to re-register as a new runner.",
"id": 21,
"uuid": "499ac930-5783-40fa-87fb-d0ea9555eb8b",
"name": "capeer-BRN-HXXB",
"token": "2b3168e33d9677bc5d0ae754ac8dc3e0a8b02960",
"address": "https://iux-gitea.myddns.me",
"labels": [
"ubuntu-latest:docker://gitea/runner-images:ubuntu-latest",
"ubuntu-22.04:docker://gitea/runner-images:ubuntu-22.04",
"ubuntu-20.04:docker://gitea/runner-images:ubuntu-20.04"
]
}

View File

@@ -1,21 +1,19 @@
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'jacoco'
}
group = 'com.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
application {
mainClass = 'com.example.App'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
}
test {
@@ -32,12 +30,7 @@ jacocoTestReport {
}
checkstyle {
toolVersion = '10.12.0'
toolVersion = '10.12.4'
configFile = file('config/checkstyle/checkstyle.xml')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
ignoreFailures = false
}