From d5de2960fd1723d55ee015d9be023e6e6de610db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 26 Feb 2022 23:24:09 +0000 Subject: [PATCH] Remove travis config This has been replaced by a Github Actions workflow. --- .travis.yml | 16 ---------------- README.md | 10 +++++----- 2 files changed, 5 insertions(+), 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d0dff3e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: go - -go: - - tip - - "1.13.x" - - "1.12.x" - - "1.11.x" - - "1.10.x" - - "1.9.x" - - "1.8.x" - - "1.7.x" - - "1.6.x" - - "1.5.x" - - "1.4.x" - - "1.3.x" - - "1.2.x" diff --git a/README.md b/README.md index a81ad10..d774e64 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,12 @@ # go-junit-report go-junit-report is a tool that converts [`go test`] output to an XML report, -suitable for applications that expect JUnit-style XML reports (e.g. -[Jenkins](http://jenkins-ci.org)). +suitable for applications that expect JUnit-style XML reports (e.g. [Jenkins]). The test output [parser] and JUnit report [formatter] are also available as Go packages. -[![Build Status][travis-badge]][travis-link] +[![Build status][github-actions-badge]][github-actions-link] ## Install from package (recommended) @@ -48,9 +47,10 @@ Run `go-junit-report -help` for a list of all supported flags. See [CONTRIBUTING.md]. [`go test`]: https://pkg.go.dev/cmd/go#hdr-Test_packages +[Jenkins]: https://www.jenkins.io/ [parser]: https://pkg.go.dev/github.com/jstemmer/go-junit-report/parser [formatter]: https://pkg.go.dev/github.com/jstemmer/go-junit-report/formatter -[travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg?branch=master -[travis-link]: https://travis-ci.org/jstemmer/go-junit-report +[github-actions-badge]: https://github.com/jstemmer/go-junit-report/actions/workflows/main.yml/badge.svg +[github-actions-link]: https://github.com/jstemmer/go-junit-report/actions [Releases]: https://github.com/jstemmer/go-junit-report/releases [CONTRIBUTING.md]: https://github.com/jstemmer/go-junit-report/blob/master/CONTRIBUTING.md