aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2022-04-06 01:35:43 +0300
committerGitHub <noreply@github.com>2022-04-06 01:35:43 +0300
commitc81b39f966ce15f38afc8bea60f800fed9ea2473 (patch)
tree929f50a4ab4d8686484794bae8f359b59e6283ba /.github
parent2e4dcc642e90c7bff96750a0deaa325972269143 (diff)
downloaddokka-c81b39f966ce15f38afc8bea60f800fed9ea2473.tar.gz
dokka-c81b39f966ce15f38afc8bea60f800fed9ea2473.tar.bz2
dokka-c81b39f966ce15f38afc8bea60f800fed9ea2473.zip
Add Qodana GitHub Action (#2372)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/qodana.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml
new file mode 100644
index 00000000..1c81393b
--- /dev/null
+++ b/.github/workflows/qodana.yml
@@ -0,0 +1,25 @@
+name: Qodana
+
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - master
+jobs:
+ inspection:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Qodana - Code Inspection
+ id: qodana
+ uses: JetBrains/qodana-action@v5.0.2
+ with:
+ args: --baseline,qodana.sarif.json,--fail-threshold,0,--linter,jetbrains/qodana-jvm
+ clone-finder:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Qodana - Clone Finder
+ uses: JetBrains/qodana-clone-finder-action@v2.0-eap \ No newline at end of file