From 9b909df81aaca35a269514af39fc74d50050e66d Mon Sep 17 00:00:00 2001 From: srnyx <25808801+srnyx@users.noreply.github.com> Date: Tue, 7 Feb 2023 19:14:33 -0500 Subject: [PATCH] Create qodana.yml --- .github/workflows/qodana.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/qodana.yml diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml new file mode 100644 index 0000000..9c7636b --- /dev/null +++ b/.github/workflows/qodana.yml @@ -0,0 +1,18 @@ +name: Qodana Report +on: + push: + branches: + - main + paths: + - 'api/**' + - 'example-plugin/**' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@main + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}