diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a496b67..215e000 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,3 +25,5 @@ jobs: - name: Test run: make test + env: + GOGC: 50 diff --git a/Makefile b/Makefile index e9aade7..674eb3f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ test: go test ./... - go test ./... -short -race + go test ./... -short -race -count=1 -timeout=5m go test ./... -run=NONE -bench=. -benchmem - env GOOS=linux GOARCH=386 go test ./... + env GOOS=linux GOARCH=386 go vet ./... go vet