frostfs-observability/Makefile
Dmitrii Stepanov 7f9eba1b19 [#3] tracing: Move from api-go
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2023-05-31 11:27:42 +03:00

14 lines
No EOL
198 B
Makefile

#!/usr/bin/make -f
SHELL = bash
# Run Unit Test with go test
test:
@go test ./... -count=1
# Run linters
lint:
@golangci-lint --timeout=5m run
# Run staticcheck
staticcheck:
@staticcheck ./...