Skip to content

Commit

Permalink
ci: Use Qodana recommended starting point
Browse files Browse the repository at this point in the history
  • Loading branch information
Griefed committed Jul 21, 2023
1 parent 6480dec commit 7b3d681
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
name: Qodana Scan

on:
push:
tags-ignore:
- '**'
workflow_dispatch:
pull_request:
push:

jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
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/[email protected]
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
use-caches: true
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} # read the steps about it below

0 comments on commit 7b3d681

Please sign in to comment.