diff --git a/Makefile b/Makefile index 1a4547f..5de1a16 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,12 @@ dist: .PHONY: setup setup: go mod download - go mod tidy go install github.com/go-bindata/go-bindata/v3/...@v3.1.3 +.PHONY: tidy +tidy: + go mod tidy + .PHONY: test test: go test -tags debug -v ./... diff --git a/go.mod b/go.mod index bcc7b9f..122dd96 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/csfrancis/proxytv -go 1.22.0 - -toolchain go1.22.5 +go 1.23.0 require ( github.com/creasty/defaults v1.8.0