testify
testify copied to clipboard
README: fix install command
go get resulted in undefined errors on my machine. Once I updated my Go version to 1.19 I got this handy message:
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
like 'go install example.com/cmd@latest'
So updated the documentation to match. :smile:
Summary
Updated installation guidelines
Changes
Updated installation guidelines to adhere to Go 1.19 go get deprecation
Motivation
Simple but annoying to google, easy to fix
go install github.com/stretchr/testify@latest
Related issues
drop the GOPATH-mode version and show only the Go Modules
PR has been updated, please re-review @dolmen