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
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ jobs:
--enforce

- name: Generate Developer Guide HTML with Pandoc
shell: bash
run: >
dotnet pandoc
docs/guide/title.txt
Expand All @@ -289,6 +290,7 @@ jobs:
"docs/TestResults Developer Guide.pdf"

- name: Generate Requirements HTML with Pandoc
shell: bash
run: >
dotnet pandoc
docs/requirements/title.txt
Expand All @@ -304,6 +306,7 @@ jobs:
"docs/TestResults Requirements.pdf"

- name: Generate Trace Matrix HTML with Pandoc
shell: bash
run: >
dotnet pandoc
docs/tracematrix/title.txt
Expand All @@ -327,6 +330,7 @@ jobs:
--report-depth 1

- name: Display CodeQL Quality Report
shell: bash
run: |
echo "=== CodeQL Quality Report ==="
cat docs/quality/codeql-quality.md
Expand All @@ -344,11 +348,13 @@ jobs:
--report-depth 1

- name: Display SonarCloud Quality Report
shell: bash
run: |
echo "=== SonarCloud Quality Report ==="
cat docs/quality/sonar-quality.md

- name: Generate Code Quality HTML with Pandoc
shell: bash
run: >
dotnet pandoc
docs/quality/title.txt
Expand Down