diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/qodana.yml | 25 |
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 |