From 96f72c3b459999c2c6e8f91c4dd5b5c5657f0599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Tsch=C3=A4pp=C3=A4t?= Date: Sun, 25 Dec 2022 12:18:49 +0100 Subject: [PATCH 1/2] Add Qodana Scan --- .github/workflows/Pull-Request.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Pull-Request.yml b/.github/workflows/Pull-Request.yml index fa75d0a..dc57eba 100644 --- a/.github/workflows/Pull-Request.yml +++ b/.github/workflows/Pull-Request.yml @@ -16,4 +16,22 @@ 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 + 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 From f7bad547361340d7d6ec460c7bd74ce4986569b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Tsch=C3=A4pp=C3=A4t?= Date: Sun, 25 Dec 2022 12:21:34 +0100 Subject: [PATCH 2/2] Add Qodana Scan --- .github/workflows/Pull-Request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/Pull-Request.yml b/.github/workflows/Pull-Request.yml index dc57eba..6933c50 100644 --- a/.github/workflows/Pull-Request.yml +++ b/.github/workflows/Pull-Request.yml @@ -20,6 +20,7 @@ jobs: quality: needs: build + runs-on: ubuntu-latest steps: - name: Download source artifact uses: actions/download-artifact@v3