1
2all:
3
4fmt:
5	go fmt ./sdk ./integration ./services/...
6
7test:
8	go test -race -coverprofile=coverage.txt -covermode=atomic ./sdk/...
9	go tool cover -html=coverage.txt -o coverage.html
10