fix(deps): update dependency org.jetbrains.kotlinx:kotlinx-serializat… #562
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
paths: | |
- "jvm/**" | |
defaults: | |
run: | |
working-directory: jvm | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
jre: [11] | |
os: [ubuntu-latest, windows-latest] | |
include: | |
- jre: 17 | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install JDK ${{ matrix.jre }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.jre }} | |
- name: gradle caching | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-home-cache-cleanup: true | |
- run: git fetch origin main | |
- run: ./gradlew build --no-configuration-cache | |
- name: junit result | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: JUnit ${{ matrix.jre }} ${{ matrix.os }} | |
report_paths: "jvm/*/build/test-results/*/TEST-*.xml" |