github.com/hashgraph/hedera-sdk-go/v2@v2.48.0/justfile (about) 1 build: format lint 2 go build 3 4 test-unit: build 5 go test -tags="unit" -v 6 7 test-e2e: build 8 go test -tags="e2e" -v -timeout 9999s 9 10 format: 11 go fmt || goimports -w *.go 12 13 lint: 14 golangci-lint run 15 16 set-previewnet: 17 echo export CONFIG_FILE="" 18 19 set-testnet: 20 echo export CONFIG_FILE=""