Remove -mod=readonly from fmt and vet

This commit is contained in:
2019-03-12 12:30:22 +01:00
parent 2efe8e2be0
commit 96b25fd432
+2 -2
View File
@@ -34,8 +34,8 @@ test:
- deps
image: golang:1.12
script:
- go fmt -mod=readonly $(go list ./...)
- go vet -mod=readonly $(go list ./...)
- go fmt $(go list ./...)
- go vet $(go list ./...)
- CGO_ENABLED=1 go test -mod=readonly -race $(go list ./...) -coverprofile .testCoverage.txt
build: