From 0c1d4ddfcfc1239c1b0d71adadea5378cd8d405a Mon Sep 17 00:00:00 2001 From: Aiden Scandella Date: Tue, 8 Nov 2016 09:56:38 -0800 Subject: [PATCH] Add A+ goreportcard and fix bash syntax Let's be pround of our work. --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aed61be..dad712f 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,28 @@ Converts `go test` output to an xml report, suitable for applications that expect junit xml reports (e.g. [Jenkins](http://jenkins-ci.org)). -[![Build Status](https://travis-ci.org/jstemmer/go-junit-report.svg)](https://travis-ci.org/jstemmer/go-junit-report) - +[![Build Status][travis-badge]][travis-link] +[![Report Card][report-badge]][report-link] ## Installation Go version 1.1 or higher is required. Install or update using the `go get` command: - go get -u github.com/jstemmer/go-junit-report +```bash +go get -u github.com/jstemmer/go-junit-report +``` ## Usage go-junit-report reads the `go test` verbose output from standard in and writes junit compatible XML to standard out. - go test -v | go-junit-report > report.xml +```bash +go test -v | go-junit-report > report.xml +``` +[travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg +[travis-link]: https://travis-ci.org/jstemmer/go-junit-report +[report-badge]: https://goreportcard.com/badge/github.com/jstemmer/go-junit-report +[report-link]: https://goreportcard.com/report/github.com/jstemmer/go-junit-report