Skip to content

build: modernize tech stack to latest versions #15

build: modernize tech stack to latest versions

build: modernize tech stack to latest versions #15

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Kotlin CI with Gradle
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
java-version: 25
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Qodana - Code Inspection
uses: JetBrains/[email protected]
with:
results-dir: ${{ github.workspace }}/qodana
- name: Archive code inspection results
uses: actions/upload-artifact@v2
with:
name: code-inspection-report
path: ${{ github.workspace }}/qodana