1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/plugins/.travis/tests.sh
2020-12-26 15:32:45 +00:00

16 lines
309 B
Bash
Executable File

#!/bin/bash -e
mod="github.com/micro/go-plugins"
PKGS=""
for d in $(find * -name 'go.mod'); do
pushd $(dirname $d) >/dev/null
go mod download
#go test -race -v ./... || :
go test -v ./...
popd >/dev/null
# PKGS=" $PKGS ${mod}/$(dirname $d)/v2"
done
#go test -race -v $PKGS || :
#go test -v $PKGS