Add tracing modules #2

Closed
dstepanov-yadro wants to merge 6 commits from (deleted):feat/tracing into master
Showing only changes of commit f326c3ebbe - Show all commits

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/make -f
SHELL = bash
# Run Unit Test with go test
test:
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} go test {}/... -count=1
# Run linters
lint:
@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} golangci-lint --timeout=5m run {}/...
staticcheck:
@@go work edit -json | jq -r '.Use[].DiskPath' | xargs -I{} staticcheck {}/...