Skip to content

Commit

Permalink
Publish test results
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanos committed Oct 3, 2024
1 parent aaa74a4 commit 8a25cf4
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ jobs:
timeout-minutes: 15
run: make unit-test-coverage

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: './.testoutput/*.junit.xml'

- name: Upload test results
if: ${{ !cancelled() }}
run: make upload-test-results
Expand Down Expand Up @@ -119,6 +125,12 @@ jobs:
timeout-minutes: 15
run: make integration-test-coverage

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: './.testoutput/*.junit.xml'

- name: Upload test results
if: ${{ !cancelled() }}
run: make upload-test-results
Expand Down Expand Up @@ -194,7 +206,11 @@ jobs:
timeout-minutes: 30 # make sure this is larger than the test timeout in the Makefile
run: make functional-test-coverage

- name: Upload test results
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:

Check failure on line 212 in .github/workflows/run-tests.yml

View workflow job for this annotation

GitHub Actions / lint-actions

could not parse as YAML: yaml: line 212: did not find expected key
report_paths: './.testoutput/*.junit.xml - name: Upload test results
if: ${{ !cancelled() }}
run: make upload-test-results
Expand Down Expand Up @@ -255,7 +271,11 @@ jobs:
timeout-minutes: 15
run: make functional-test-xdc-coverage

- name: Upload test results
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: './.testoutput/*.junit.xml - name: Upload test results
if: ${{ !cancelled() }}
run: make upload-test-results
Expand Down

0 comments on commit 8a25cf4

Please sign in to comment.