Skip to content

Commit

Permalink
fix: markdown generation
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Aug 22, 2023
1 parent 15597ad commit ae5e5d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runs:
mode: no-frames
input: ${{ inputs.xml }}
output: ${{ inputs.html }}
- name: Create the HTML
- name: Create the Markdown
if: inputs.markdown && (failure() || success())
uses: pl-strflt/junit-xml-to-html@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ test-docker: docker fixtures.car gateway-conformance
docker run --rm -v "${PWD}:/workspace" -w "/workspace" ghcr.io/pl-strflt/saxon:v1 -s:./reports/output.xml -xsl:/etc/junit-noframes-saxon.xsl -o:./reports/output.html
open ./reports/output.html

./reports/output.md: ./reports/output.xml
docker run --rm -v "${PWD}:/workspace" -w "/workspace" ghcr.io/pl-strflt/saxon:v1 -s:./reports/output.xml -xsl:/etc/junit-summary.xsl -o:./reports/output.md

docker:
docker build --build-arg VERSION="$(CLI_VERSION)" -t gateway-conformance .

Expand Down

0 comments on commit ae5e5d5

Please sign in to comment.