diff --git a/Makefile b/Makefile index 181235f8..52a176a5 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +lint: + golangci-lint run -v + test: @echo Running unit tests... @go test ./... diff --git a/loggingx/logger_test.go b/loggingx/logger_test.go index b60b9973..98ed0e76 100644 --- a/loggingx/logger_test.go +++ b/loggingx/logger_test.go @@ -3,8 +3,9 @@ package loggingx_test import ( "testing" - "github.com/stretchr/testify/require" "go.infratographer.com/x/loggingx" + + "github.com/stretchr/testify/require" "go.uber.org/zap" "go.uber.org/zap/zapcore" "go.uber.org/zap/zaptest/observer"