···1212 go build ./...
1313 - test: |
1414 cd furgit
1515- go test -v ./...
1515+ go test -v -count 1 $(go list ./... | grep -v '/internal/compress')
1616 - test-race: |
1717 cd furgit
1818- go test -race -v ./...
1818+ go test -race -v -count 1 $(go list ./... | grep -v '/internal/compress')
1919 - test-purego: |
2020 cd furgit
2121- go test -v -tags purego ./...
2121+ go test -v -tags purego -count 1 $(go list ./... | grep -v '/internal/compress')
2222 - lint: |
2323 cd furgit
2424 golangci-lint run ./...