You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/02 09:00:03 UTC

[plc4x] branch develop updated: chore(build): upload go test results to action

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0a16fb34a1 chore(build): upload go test results to action
0a16fb34a1 is described below

commit 0a16fb34a132b679c5e3e5cbffd2ff58e4e0872b
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Jun 2 10:59:55 2023 +0200

    chore(build): upload go test results to action
---
 .github/workflows/go-platform.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/go-platform.yml b/.github/workflows/go-platform.yml
index d43711fd11..533e670e8f 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -137,5 +137,13 @@ jobs:
         if: ${{ failure() }}
         run: ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ steps.extra_options.outputs.extra_options }} -B -P'with-go,skip-bacnet-regression-test' -pl :plc4go -am ${{ steps.platform_opts.outputs.platform_opts }} install
 
+      - name: Test Report
+        uses: dorny/test-reporter@v1
+        if: success() || failure()
+        with:
+          name: Golang Tests
+          path: target/surefire-reports/go-junit-report.xml
+          reporter: java-junit
+
       - name: Perform CodeQL Analysis
         uses: github/codeql-action/analyze@v2