Skip to content

Commit

Permalink
Adding test quodana step.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Aug 13, 2024
1 parent 037588e commit e969a2b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,18 @@ jobs:
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots 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 }}

0 comments on commit e969a2b

Please sign in to comment.