https://github.com/foodee/annotate-failing-tests
https://github.com/foodee/annotate-failing-tests
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/foodee/annotate-failing-tests
- Owner: Foodee
- Created: 2020-01-24T23:51:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T12:10:59.000Z (over 3 years ago)
- Last Synced: 2025-02-16T18:17:29.693Z (over 1 year ago)
- Language: JavaScript
- Size: 11.3 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# annotate-failing-tests
Action to annotate github PRs with stack traces when they fail.
## Usage
Simply add to your workflow after a testing step, with a pointer to the junit test report.
```yaml
name: Verify Code
jobs:
test:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- name: Run Tests
runs: rails test
- name: Annotate Source
uses: Foodee/annotate-failing-tests@master
with:
report-file: report.xml
language: ruby
check-name: test
```