Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to K2, add Qodana #69

Merged
merged 8 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/gradle-build-with-detekt.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Gradle Build With Detekt

on: [push, pull_request]
on: [workflow_dispatch]
Daoortor marked this conversation as resolved.
Show resolved Hide resolved

jobs:
build:
Expand All @@ -18,4 +18,3 @@ jobs:
- uses: gradle/gradle-build-action@v2.1.5
with:
arguments: build --stacktrace -PrunDetekt

27 changes: 27 additions & 0 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#file: noinspection YAMLSchemaValidation
name: Qodana
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.1
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fun properties(key: String) = project.findProperty(key).toString()
@Suppress("DSL_SCOPE_VIOLATION") // "libs" produces a false-positive warning, see https://youtrack.jetbrains.com/issue/KTIJ-19369
plugins {
java
val kotlinVersion = "1.9.0"
val kotlinVersion = "2.0.0"
id("org.jetbrains.kotlin.jvm") version kotlinVersion apply false
id("org.jetbrains.kotlin.multiplatform") version kotlinVersion apply false
id("org.springframework.boot") version "2.7.3" apply false
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
val kotlinVersion = "1.9.0"
val kotlinVersion = "2.0.0"
kotlin("multiplatform") version kotlinVersion
}

Expand Down