Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ jobs:
with:
dotnet-version: "10.0.102"

- name: Temporarily disable .editorconfig for Qodana
shell: bash
run: |
if [ -f .editorconfig ]; then
mv .editorconfig .editorconfig.qodana.bak
fi

- name: Run Qodana
uses: JetBrains/qodana-action@42dad391966aca8ca344ca2340a7f43a5507e9b2 # v2025.3.1
with:
Expand All @@ -55,14 +48,6 @@ jobs:
upload-result: false
use-caches: false

- name: Restore .editorconfig
if: always()
shell: bash
run: |
if [ -f .editorconfig.qodana.bak ]; then
mv .editorconfig.qodana.bak .editorconfig
fi

- name: Run Entry Check
if: always()
shell: bash
Expand Down
Loading