-
Notifications
You must be signed in to change notification settings - Fork 4
ci(CA): Add qodana static analysis #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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/qodana-action@v2025.2 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use latest release (v2025.3) https://github.com/JetBrains/qodana-action/releases/tag/v2025.3.1
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a automatic PR, im not gonna interfere with its setup, but check dev manager chat |
||
| with: | ||
| pr-mode: false | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why no pr analysis? If possible, it should also analyze pr's and also that we have a condition that it must pass on new code |
||
| env: | ||
| QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_538010437 }} | ||
| QODANA_ENDPOINT: 'https://qodana.cloud' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| #################################################################################################################### | ||
| # WARNING: Do not store sensitive information in this file, as its contents will be included in the Qodana report. # | ||
| #################################################################################################################### | ||
|
|
||
| version: "1.0" | ||
| linter: jetbrains/qodana-jvm-community:2025.2 | ||
Nudelsuppe42 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| profile: | ||
| name: qodana.recommended | ||
| include: | ||
| - name: CheckDependencyLicenses | ||
Uh oh!
There was an error while loading. Please reload this page.