blob: 74b168e8559fa81ca43e11cd1c8d7501122f8cb5 (
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.1.0
with:
args: --baseline,qodana.sarif.json,--fail-threshold,0,--linter,jetbrains/qodana-jvm:2022.1-eap
clone-finder:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Qodana - Clone Finder
uses: JetBrains/qodana-clone-finder-action@v2.0-eap
|