mirror of
https://github.com/minio/mc.git
synced 2025-11-12 01:02:26 +03:00
Project can be only built with go1.12 or newer other build related changes to use new go1.12 features. Fixes #2815
6 lines
153 B
Bash
Executable File
6 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
GOPROXY=https://proxy.golang.org GO111MODULE=on CGO_ENABLED=0 go test -v -coverprofile=coverage.txt -covermode=atomic ./...
|