From 82c13bd022583d9d0071535dbf9508de4f0503f9 Mon Sep 17 00:00:00 2001 From: Havrileck Alexandre Date: Sat, 15 Jul 2023 09:56:43 +0200 Subject: [PATCH] ci: Add junit integration in CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5269dd00..da2d73f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,3 +127,8 @@ jobs: - env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: goveralls -coverprofile=c.out -service=github + - name: Publish Test Report + uses: mikepenz/action-junit-report@v3 + if: success() || failure() # always run even if the previous step fails + with: + report_paths: "junit.xml"