Skip to content

Commit

Permalink
Merge pull request #237 from ProjectMapK/fix/ci2
Browse files Browse the repository at this point in the history
Add Kotlin 2.1 test
  • Loading branch information
k163377 authored Nov 10, 2024
2 parents e524c00 + 508dad4 commit 97f1320
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2
uses: gradle/actions/wrapper-validation@v3
- name: Set up java
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: git-pr-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: git-pr-release
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
# LTS versions, latest version (if exists)
java-version: [ '8', '11', '17', '21', '22', '23' ]
java-version: [ '8', '11', '17', '21', '23' ]
# Minimum version, latest release version, latest pre-release version (if exists)
kotlin:
- name: '1.8.22'
Expand All @@ -53,6 +53,10 @@ jobs:
- name: '2.0.21 K2'
version: '2.0.21'
k2: true
- name: '2.1.0-RC'
k2: false
- name: '2.1.0-RC K2'
k2: true
env:
KOTLIN_VERSION: ${{ matrix.kotlin.version }}
USE_K2: ${{ matrix.kotlin.k2 }}
Expand Down

0 comments on commit 97f1320

Please sign in to comment.