Add Makefile target: lint

This commit is contained in:
Igor Chubin 2022-12-11 14:29:17 +01:00
parent bb4474b0cf
commit fca62e63c3

View file

@ -3,3 +3,6 @@ srv: srv.go internal/*/*.go internal/*/*/*.go
go-test: go-test:
go test ./... go test ./...
lint:
golangci-lint run ./...