Skip to content

Commit

Permalink
add junit/surefire action to view failures in PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan Sloughter committed Nov 13, 2021
1 parent e71c853 commit 6075c25
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ jobs:
run: rebar3 eunit --cover
- name: Common Test tests
run: rebar3 ct --cover

- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
if: always() # always run even if the previous step fails
with:
report_paths: '_build/test/logs/*/junit_report.xml'

- name: XRef
run: rebar3 xref
- name: Covertool
Expand Down

0 comments on commit 6075c25

Please sign in to comment.