From 5747194d3259ba89ced87404b8fac713427eb2b9 Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Fri, 9 Sep 2022 21:18:06 +0930 Subject: [PATCH] ci: drop travis Previously it was included because it was able to run go master tests. It fails at that now, so drop it as a service. --- .travis.yml | 19 ------------------- README.md | 3 ++- 2 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d73cea1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: go -go: - - 1.13.x - - 1.14.x - - 1.15.x - - 1.16.x - - 1.17.x - - 1.18.x - - 1.19.x - - master - -install: - - go get -v golang.org/x/tools/cmd/cover -script: - - go test -v -tags=testcgo -covermode=count -coverprofile=profile.cov -after_success: - - go get -v github.com/mattn/goveralls - - export PATH=$PATH:$HOME/gopath/bin - - goveralls -coverprofile=profile.cov -service=travis-ci diff --git a/README.md b/README.md index 4794bb7..8bf5dda 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ utter ===== -[![Build Status](https://travis-ci.org/kortschak/utter.svg?branch=master)](https://travis-ci.org/kortschak/utter) [![Coverage Status](https://coveralls.io/repos/kortschak/utter/badge.svg?branch=master)](https://coveralls.io/r/kortschak/utter?branch=master) +[![Build status](https://github.com/kortschak/utter/workflows/Test/badge.svg)](https://github.com/kortschak/utter/actions) + [![Coverage Status](https://coveralls.io/repos/kortschak/utter/badge.svg?branch=master)](https://coveralls.io/r/kortschak/utter?branch=master) utter is a fork of the outstanding [go-spew tool](https://github.com/davecgh/go-spew). Where go-spew is an aid for debugging, providing annotation of dumped datastructures,