From 9b25cd0fea757fecd4f4a31dcda0a7330b9d9ed6 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 9 Dec 2022 16:08:01 +0530 Subject: [PATCH] feat(ci): add Qodana scan workflow --- .github/workflows/qodana_scan.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/qodana_scan.yml diff --git a/.github/workflows/qodana_scan.yml b/.github/workflows/qodana_scan.yml new file mode 100644 index 00000000..f101bd69 --- /dev/null +++ b/.github/workflows/qodana_scan.yml @@ -0,0 +1,19 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + +jobs: + qodana: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2022.2.3 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}