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
10 changes: 3 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -328,29 +327,26 @@ 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: >
dotnet sonarmark
--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: >
Expand Down