Update main dependencies ()

This commit is contained in:
Antonio Navarro Perez 2022-01-05 21:17:28 +01:00 committed by GitHub
parent efba26e016
commit 45e745dffc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 868 additions and 78 deletions

View file

@ -20,11 +20,11 @@ build: go-generate go-build
## test-race: execute all tests with race enabled.
test-race:
CGO_ENABLED=1 go test -v --race -coverprofile=coverage.out ./...
go test -v --race -coverprofile=coverage.out ./...
## test: execute all tests
test:
CGO_ENABLED=1 go test -v -coverprofile=coverage.out ./...
go test -v -coverprofile=coverage.out ./...
go-build:
@echo " > Building binary on $(BIN_OUTPUT)..."