Skip to content

Commit

Permalink
Merge pull request #37 from brichbash/qodana-automation-1485630403
Browse files Browse the repository at this point in the history
Add qodana CI checks
  • Loading branch information
brichbash authored Oct 28, 2024
2 parents 85ff4f6 + 17d4b15 commit bcbc20d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches: # Specify your branches here
- main # The 'main' branch
- 'releases/*' # The release branches

jobs:
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/[email protected]
with:
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_2103224152 }}
QODANA_ENDPOINT: 'https://qodana.cloud'
6 changes: 6 additions & 0 deletions qodana.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: "1.0"
linter: jetbrains/qodana-jvm:2024.1
profile:
name: qodana.recommended
include:
- name: CheckDependencyLicenses

0 comments on commit bcbc20d

Please sign in to comment.