From c6dc5989445d78e9e47998ff3b4694799abedd10 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 30 Dec 2022 12:39:09 +0100 Subject: [PATCH] Add qodana as github action --- .github/workflows/code_quality.yml | 18 ++++++++++++++++++ .../{exakat.yml => exakat.yml.disabled} | 0 2 files changed, 18 insertions(+) create mode 100644 .github/workflows/code_quality.yml rename .github/workflows/{exakat.yml => exakat.yml.disabled} (100%) diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml new file mode 100644 index 00000000000..ef097e161e7 --- /dev/null +++ b/.github/workflows/code_quality.yml @@ -0,0 +1,18 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + - 'releases/*' + +jobs: + qodana: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2022.3.0 diff --git a/.github/workflows/exakat.yml b/.github/workflows/exakat.yml.disabled similarity index 100% rename from .github/workflows/exakat.yml rename to .github/workflows/exakat.yml.disabled