Skip to content

Update org.jetbrains.kotlin to v2.0.10 #651

Update org.jetbrains.kotlin to v2.0.10

Update org.jetbrains.kotlin to v2.0.10 #651

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
if: contains(github.event.head_commit.message, '[skip ci]') == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assemble check
- name: Generate and Build
run: ./gradlew domaCodeGenDevEntity assemble check -x spotlessCheck
- name: Run the application
run: ./gradlew run
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: build/reports