diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 479739b..b113e2d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -319,7 +319,6 @@ jobs: "docs/TestResults Trace Matrix.pdf" - name: Generate CodeQL Quality Report with SarifMark - shell: pwsh run: > dotnet sarifmark --sarif codeql-results/csharp.sarif @@ -328,13 +327,11 @@ jobs: --report-depth 1 - name: Display CodeQL Quality Report - shell: pwsh run: | echo "=== CodeQL Quality Report ===" - Get-Content docs/quality/codeql-quality.md + cat docs/quality/codeql-quality.md - name: Generate Code Quality Report with SonarMark - shell: pwsh env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: > @@ -342,15 +339,14 @@ jobs: --server https://sonarcloud.io --project-key demaconsulting_TestResults --branch ${{ github.ref_name }} - --token "$env:SONAR_TOKEN" + --token "$SONAR_TOKEN" --report docs/quality/sonar-quality.md --report-depth 1 - name: Display SonarCloud Quality Report - shell: pwsh run: | echo "=== SonarCloud Quality Report ===" - Get-Content docs/quality/sonar-quality.md + cat docs/quality/sonar-quality.md - name: Generate Code Quality HTML with Pandoc run: >