Skip to content

Commit 97f1320

Browse files
authored
Merge pull request #237 from ProjectMapK/fix/ci2
Add Kotlin 2.1 test
2 parents e524c00 + 508dad4 commit 97f1320

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/lint-and-test-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Checkout
4444
uses: actions/checkout@v4
4545
- name: Validate Gradle wrapper
46-
uses: gradle/wrapper-validation-action@v2
46+
uses: gradle/actions/wrapper-validation@v3
4747
- name: Set up java
4848
uses: actions/setup-java@v4
4949
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: git-pr-release
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@master
9+
- uses: actions/checkout@v4
1010
with:
1111
fetch-depth: 0
1212
- name: git-pr-release

.github/workflows/test-main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
# LTS versions, latest version (if exists)
38-
java-version: [ '8', '11', '17', '21', '22', '23' ]
38+
java-version: [ '8', '11', '17', '21', '23' ]
3939
# Minimum version, latest release version, latest pre-release version (if exists)
4040
kotlin:
4141
- name: '1.8.22'
@@ -53,6 +53,10 @@ jobs:
5353
- name: '2.0.21 K2'
5454
version: '2.0.21'
5555
k2: true
56+
- name: '2.1.0-RC'
57+
k2: false
58+
- name: '2.1.0-RC K2'
59+
k2: true
5660
env:
5761
KOTLIN_VERSION: ${{ matrix.kotlin.version }}
5862
USE_K2: ${{ matrix.kotlin.k2 }}

0 commit comments

Comments
 (0)