-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add qodana.yaml file * Add github workflow file * Update qodana.yaml --------- Co-authored-by: Qodana Application <[email protected]> Co-authored-by: Henry Asbridge <[email protected]>
- Loading branch information
1 parent
fdd022d
commit b37be0d
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_1488465344 }} | ||
QODANA_ENDPOINT: 'https://qodana.cloud' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: "1.0" | ||
linter: jetbrains/qodana-dotnet:2024.1 | ||
profile: | ||
name: qodana.recommended | ||
include: | ||
- name: CheckDependencyLicenses | ||
exclude: | ||
- name: All | ||
paths: | ||
- ProjectLighthouse.Localization | ||
- ProjectLighthouse/Migrations |