Skip to content

Commit f82ba62

Browse files
feat: add Kotlin SDK JVM tests to GitHub Actions CI
- Move Kotlin SDK from kotlin-sdk to sdks/community/kotlin - Add kotlin job to test.yml workflow to run 209 JVM tests - Uses JDK 21 on ubuntu-latest with Gradle caching 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 72753d3 commit f82ba62

File tree

255 files changed

+24
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+24
-2
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,25 @@ jobs:
8989

9090
- name: Run tests
9191
working-directory: typescript-sdk
92-
run: pnpm run test
92+
run: pnpm run test
93+
94+
kotlin:
95+
name: Kotlin SDK Tests
96+
runs-on: ubuntu-latest
97+
98+
steps:
99+
- name: Checkout code
100+
uses: actions/checkout@v4
101+
102+
- name: Set up JDK 21
103+
uses: actions/setup-java@v4
104+
with:
105+
java-version: '21'
106+
distribution: 'temurin'
107+
108+
- name: Setup Gradle
109+
uses: gradle/gradle-build-action@v3
110+
111+
- name: Run JVM tests
112+
working-directory: sdks/community/kotlin/library
113+
run: ./gradlew jvmTest --no-daemon --stacktrace

docs/sdk/kotlin/overview.mdx

Lines changed: 1 addition & 0 deletions
File renamed without changes.
File renamed without changes.

kotlin-sdk/README.md renamed to sdks/community/kotlin/README.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)