From f834ff97ee1c2df589a10beecfe4cf51defad295 Mon Sep 17 00:00:00 2001 From: Silen Locatelli <88315530+SilenLoc@users.noreply.github.com> Date: Wed, 22 May 2024 14:13:52 +0200 Subject: [PATCH] chore: let quodana run --- .github/workflows/verify.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index a33b0ea..69365ac 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -21,4 +21,19 @@ jobs: with: tool: cargo-hack@0.5,cargo-deny@0.14,just@1,cargo-edit@0.12 - run: just ci-tools - - run: just verify \ No newline at end of file + - run: just verify + 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@v2024.1 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file