Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <[email protected]>
  • Loading branch information
systay committed Oct 10, 2024
1 parent 0b3396c commit 05c8a86
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,7 @@ jobs:
run: go install github.com/jstemmer/go-junit-report@latest

- name: Run Tests and Convert to JUnit
run: |
go test -v ./go/... | tee go-test.log
exit_code=${PIPESTATUS[0]} # Capture the exit code from go test
go-junit-report < go-test.log > report.xml
exit $exit_code # Fail the step if the tests failed
shell: bash
run: go test -v ./go/... | go-junit-report > report.xml

- name: Annotate Test Failures
if: failure()
Expand Down

0 comments on commit 05c8a86

Please sign in to comment.