mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
11 lines
218 B
Bash
11 lines
218 B
Bash
set -ev
|
|
|
|
if [[ "$1" == "goveralls" ]]; then
|
|
echo "Testing with goveralls..."
|
|
go get github.com/mattn/goveralls
|
|
$HOME/gopath/bin/goveralls -service=travis-ci
|
|
else
|
|
echo "Testing with go test..."
|
|
go test -v ./...
|
|
fi
|