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 all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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/[email protected]
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/[email protected]
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
Loading
Loading