diff --git a/.github/workflows/Pull-Request.yml b/.github/workflows/Pull-Request.yml index fa75d0a..6933c50 100644 --- a/.github/workflows/Pull-Request.yml +++ b/.github/workflows/Pull-Request.yml @@ -16,4 +16,23 @@ jobs: build: needs: gitversion - uses: elendil-software/github-actions/.github/workflows/dotnet-build.yml@main \ No newline at end of file + uses: elendil-software/github-actions/.github/workflows/dotnet-build.yml@main + + quality: + needs: build + runs-on: ubuntu-latest + steps: + - name: Download source artifact + uses: actions/download-artifact@v3 + with: + name: 'workflow-share' + + - name: Unzip artifact archive + run: | + 7z x workflow-share.7z + rm -f workflow-share.7z + + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@main + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file