Skip to content

Commit

Permalink
Fix Go modules version
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
SuperQ committed Jun 2, 2023
1 parent f97607b commit b5eddf7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b5eddf7

Please sign in to comment.