From 751a86df7af6367a2d8fea350b1ab26063a654f5 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Wed, 13 Oct 2021 11:33:12 -0400 Subject: [PATCH] Update test matrix to cover go1.15, go1.16, and go1.17 --- .travis.yml | 8 ++++---- README.md | 2 +- go.mod | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7f85421..c459ee7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ language: go go: - - "1.12" - - "1.13" - - "1.14" + - "1.15" + - "1.16" + - "1.17" before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cover script: - - $HOME/gopath/bin/goveralls -service=travis-ci -package github.com/go-test/deep + - $HOME/gopath/bin/goveralls -service=travis-pro -package github.com/go-test/deep diff --git a/README.md b/README.md index 560a5d6..56770a6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Deep Variable Equality for Humans -[![Go Report Card](https://goreportcard.com/badge/github.com/go-test/deep)](https://goreportcard.com/report/github.com/go-test/deep) [![Build Status](https://travis-ci.org/go-test/deep.svg?branch=master)](https://travis-ci.org/go-test/deep) [![Coverage Status](https://coveralls.io/repos/github/go-test/deep/badge.svg?branch=master)](https://coveralls.io/github/go-test/deep?branch=master) [![GoDoc](https://godoc.org/github.com/go-test/deep?status.svg)](https://pkg.go.dev/github.com/go-test/deep?tab=doc) +[![Go Report Card](https://goreportcard.com/badge/github.com/go-test/deep)](https://goreportcard.com/report/github.com/go-test/deep) [![Build Status](https://app.travis-ci.com/go-test/deep.svg?branch=master)](https://app.travis-ci.com/go-test/deep) [![Coverage Status](https://coveralls.io/repos/github/go-test/deep/badge.svg?branch=master)](https://coveralls.io/github/go-test/deep?branch=master) [![GoDoc](https://godoc.org/github.com/go-test/deep?status.svg)](https://pkg.go.dev/github.com/go-test/deep) This package provides a single function: `deep.Equal`. It's like [reflect.DeepEqual](http://golang.org/pkg/reflect/#DeepEqual) but much friendlier to humans (or any sentient being) for two reason: diff --git a/go.mod b/go.mod index 7ac85c4..021ffba 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/go-test/deep -go 1.13 +go 1.16