Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/Pull-Request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,23 @@ jobs:

build:
needs: gitversion
uses: elendil-software/github-actions/.github/workflows/dotnet-build.yml@main
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 }}