Skip to content

Commit

Permalink
Add Qodana inspection
Browse files Browse the repository at this point in the history
  • Loading branch information
romankr committed Mar 9, 2024
1 parent 461952b commit eee47f5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/master-build-and-verify-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,20 @@ jobs:
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --no-build --verbosity normal

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 }}

0 comments on commit eee47f5

Please sign in to comment.