Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b5b86cc

Browse filesBrowse files
committed
Add Kotlin cross-version job (#3732)
1 parent 44b2f51 commit b5b86cc
Copy full SHA for b5b86cc

File tree

Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed

‎.github/workflows/main.yml

Copy file name to clipboardExpand all lines: .github/workflows/main.yml
+20Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,26 @@ jobs:
4747
- name: Test
4848
run: ./mvnw $MAVEN_ARGS verify
4949

50+
kotlin:
51+
52+
name: Kotlin ${{ matrix.kotlin }}
53+
strategy:
54+
fail-fast: false
55+
matrix:
56+
kotlin: [1.9.25, 2.0.21, 2.1.20-Beta1]
57+
runs-on: ubuntu-latest
58+
59+
steps:
60+
- uses: actions/checkout@v4
61+
- name: Setup Java
62+
uses: actions/setup-java@v4
63+
with:
64+
distribution: 'zulu'
65+
java-version: '21'
66+
cache: 'maven'
67+
- name: Test
68+
run: ./mvnw $MAVEN_ARGS verify -Dkotlin.version=${{ matrix.kotlin }}
69+
5070
javadoc:
5171

5272
name: Javadoc

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.