feat(ci): update coverage path handling in Qodana configuration; add debug output for coverage XML paths

This commit is contained in:
Miha Kralj
2025-12-26 14:22:13 -08:00
parent f45ffde425
commit bfb0f6a322
2 changed files with 10 additions and 2 deletions
+6 -2
View File
@@ -182,9 +182,13 @@ jobs:
name: coverage-reports
path: .qodana/code-coverage
- name: Fix Coverage Paths
- name: Debug Coverage Paths
run: |
find .qodana/code-coverage -name "*.xml" -type f -exec sed -i 's|/home/runner/work/QuanTAlib/QuanTAlib|/data/project|g' {} +
echo "=== Coverage XML paths sample ==="
grep -h 'fullPath=' .qodana/code-coverage/*.xml | head -10
echo ""
echo "=== Project structure ==="
find . -name "*.cs" -type f | grep -E "lib/|quantower/" | head -10
- name: Qodana Scan
uses: JetBrains/qodana-action@v2024.3.4