From c0da40a9d33a7f12691440401b4c931a856d15d9 Mon Sep 17 00:00:00 2001 From: Marius Ciepluch <11855163+norandom@users.noreply.github.com> Date: Fri, 8 Mar 2024 09:54:23 +0100 Subject: [PATCH] Create code_quality.yml.yml --- .github/workflows/code_quality.yml.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/code_quality.yml.yml diff --git a/.github/workflows/code_quality.yml.yml b/.github/workflows/code_quality.yml.yml new file mode 100644 index 0000000..6807c3c --- /dev/null +++ b/.github/workflows/code_quality.yml.yml @@ -0,0 +1,25 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: # Specify your branches here + - main # The 'main' branch + - 'releases/*' # The release branches + +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.3 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}