From 784d74a550617ed1498dd94e684be8366b1c801b Mon Sep 17 00:00:00 2001 From: cj Date: Mon, 4 Sep 2023 22:34:14 +0800 Subject: [PATCH] CI: add Qodana action --- .github/workflows/qodana.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 00000000..cd250583 --- /dev/null +++ b/.github/workflows/qodana.yml @@ -0,0 +1,27 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + - master + - dev + - 'releases/*' + +jobs: + qodana: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + checks: write + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit + fetch-depth: 0 # a full history is required for pull request analysis + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2023.2 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}