-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from ProjectMapK/develop
For release 2.14.2-alpha4
- Loading branch information
Showing
30 changed files
with
393 additions
and
144 deletions.
There are no files selected for viewing
32 changes: 17 additions & 15 deletions
32
.github/workflows/lint-and-test.yml → .github/workflows/lint-and-test-dev.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: lint-and-test-main | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "gradle/**" | ||
- "**.kts" | ||
- gradle.properties | ||
- gradlew | ||
- gradlew.bat | ||
- "**.kt" | ||
- "**.java" | ||
- .github/workflows/lint-and-test-main.yml | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
paths: | ||
- "gradle/**" | ||
- "**.kts" | ||
- gradle.properties | ||
- gradlew | ||
- gradlew.bat | ||
- "**.kt" | ||
- "**.java" | ||
- .github/workflows/lint-and-test-main.yml | ||
jobs: | ||
lint-and-test-main: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
java-version: [ '8', '11', '17', '19' ] | ||
kotlin-version: [ '1.7.21', '1.8.10', '1.8.20-Beta' ] | ||
env: | ||
KOTLIN_VERSION: ${{ matrix.kotlin-version }} | ||
name: lint-and-test-main | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
- name: 'Set up java ${{ matrix.java-version }}' | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '${{ matrix.java-version }}' | ||
distribution: 'adopt' | ||
cache: 'gradle' | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Lint | ||
run: ./gradlew lintKotlin | ||
- name: Test | ||
run: ./gradlew test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
src/main/kotlin/com/fasterxml/jackson/module/kotlin/Exceptions.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.