Skip to content

Commit

Permalink
ci(#1699): Add Test Report
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Oct 28, 2024
1 parent b5fe848 commit 7f33f0b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,23 +147,13 @@ jobs:
--profile "+${{ matrix.profile }}" \
--filter ${{ matrix.filter }}
- name: Print success in summary
if: success()
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "All test(s) successfull :tada:" >> $GITHUB_STEP_SUMMARY
- name: Print failure in summary
if: failure()
run: |
echo "" >> $GITHUB_STEP_SUMMARY
echo "Some test(s) failed :cold_sweat:" >> $GITHUB_STEP_SUMMARY
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
- name: Upload Test Report
uses: actions/upload-artifact@v3
if: always() # always run even if the previous step fails
with:
report_paths: "TEST-*.xml"
name: nf-test-test-results
path: "TEST-*.xml"
retention-days: 1

- name: Clean up
if: success() || failure()
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Test Report"
on:
workflow_run:
workflows: ["nf-core CI"] # runs after CI workflow
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
with:
artifact: nf-test-test-results # artifact name
name: nf-test Tests # Name of the check run which will be created
path: "TEST-*.xml" # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

0 comments on commit 7f33f0b

Please sign in to comment.