Fix Go modules version

The `go` directive in go.mod is meant to indicate the minimum supported
version.

See: https://go.dev/doc/modules/gomod-ref#go

Signed-off-by: SuperQ <superq@gmail.com>
pull/1394/head
SuperQ 2023-06-02 16:11:11 +02:00
parent f97607b898
commit b5eddf779a
No known key found for this signature in database
GPG Key ID: C646B23C9E3245F1
1 changed files with 3 additions and 1 deletions

4
go.mod
View File

@ -1,6 +1,8 @@
module github.com/stretchr/testify
go 1.20
// This should match the minimum supported version that is tested in
// .github/workflows/main.yml
go 1.19
require (
github.com/davecgh/go-spew v1.1.1