Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ellraiser/love-test-report
basic github action to dump report output for love-test
https://github.com/ellraiser/love-test-report
love love2d testing testing-framework testing-tools
Last synced: 29 days ago
JSON representation
basic github action to dump report output for love-test
- Host: GitHub
- URL: https://github.com/ellraiser/love-test-report
- Owner: ellraiser
- Created: 2023-10-06T09:33:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-20T18:58:34.000Z (about 1 year ago)
- Last Synced: 2024-11-10T01:07:47.232Z (3 months ago)
- Topics: love, love2d, testing, testing-framework, testing-tools
- Language: JavaScript
- Homepage: https://love2d.org/
- Size: 831 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# love-test-report
Basic github action to dump the report output generated by [love-test](https://github.com/ellraiser/love-test) into a github actionExample usage:
```yaml
- name: Love Test Report
uses: ellraiser/love-test-report@main
with:
name: Love Testsuite Linux
title: linux-test-report
path: testing/output/lovetest_runAllTests.md
```The 3 action parameters are:
- name (name for the report shown on the page)
- title (name for the report shown in the sidebar)
- path (path to the md file made by love-test)The action will look for specific header comment in the markdown in the format of:
``
This is then used to set the totals for the overview + badgeThis action won't generate checks on public PRs due to Github Action restrictions on write access in actions.