Generate GitHub workflow job summaries from your test results. Test results should be present in TAP format. This action is based on the lovely project test-summary/action.
Automatically pick up all .tap files in the project directory:
- run: <whatever you need to do to run tests>
- name: Test Summary
uses: nikeee/tap-summary@v1
if: always()If you only want to include some TAP files:
- name: Test Summary
uses: nikeee/tap-summary@v1
with:
path: "**/*.test.tap" # default: "**/*.tap"
if: always()