From 923a4c4a903785a6fc3f013343223b8a19143097 Mon Sep 17 00:00:00 2001 From: iWas-Coder Date: Sat, 15 Jun 2024 23:50:59 +0200 Subject: [PATCH] Try GH action to output a summary from the JUnit XML file --- .github/workflows/test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index edfc8e7..466e876 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -39,5 +39,11 @@ jobs: run: | gcc -I test/include -I . -std=c99 test/src/* -o test/carbon ./test/carbon + - name: test-results-report + if: ${{ always() }} + uses: test-summary/action@v2 + with: + paths: carbon_results.xml + output: carbon_results.md - name: analyze uses: github/codeql-action/analyze@v3