Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: macos-latest
name: Validate PR
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up JDK 21
uses: actions/setup-java@v5
Expand All @@ -32,14 +32,16 @@ jobs:
cache-read-only: true

- name: Build with Gradle
run: ./gradlew clean build
run: ./gradlew clean ktlintCheck build koverLog koverHtmlReport

- name: Upload JUnit test results
- name: Upload Reports
if: always()
uses: actions/upload-artifact@v4
with:
name: junit-results
path: '**/build/test-results/test/*.xml'
path: |
**/build/test-results/test/*.xml
build/reports

- name: Disable Auto-Merge on Fail
if: failure() && github.event_name == 'pull_request'
Expand Down
26 changes: 26 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,38 @@
plugins {
alias(libs.plugins.ktlint)
alias(libs.plugins.kover)
}

allprojects {
group = "io.modelcontextprotocol"
version = "0.6.0"
}

dependencies {
kover(project(":kotlin-sdk-core"))
kover(project(":kotlin-sdk-client"))
kover(project(":kotlin-sdk-server"))
kover(project(":kotlin-sdk-test"))
}

subprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
apply(plugin = "org.jetbrains.kotlinx.kover")
}

kover {
reports {
filters {
includes.classes("io.modelcontextprotocol.kotlin.sdk.*")
}
total {
log {
}
verify {
rule {
minBound(65)
}
}
}
}
}
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ kotlin = "2.2.0"
dokka = "2.0.0"
atomicfu = "0.29.0"
ktlint = "13.0.0"
kover = "0.9.1"

# libraries version
serialization = "1.9.0"
Expand Down Expand Up @@ -59,6 +60,7 @@ ktor-serialization-kotlinx-json = { group = "io.ktor", name = "ktor-serializatio
[plugins]
kotlinx-binary-compatibility-validator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binaryCompatibilityValidatorPlugin" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }

# Samples
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
Expand Down
Loading