From c81b39f966ce15f38afc8bea60f800fed9ea2473 Mon Sep 17 00:00:00 2001 From: Vadim Mishenev Date: Wed, 6 Apr 2022 01:35:43 +0300 Subject: Add Qodana GitHub Action (#2372) --- .github/workflows/qodana.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/qodana.yml (limited to '.github') 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 -- cgit