blob: 1c81393bc6f3802f07b3c5df0ee2e2ac23a1a9ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|