mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-23 17:53:05 +02:00
16 lines
309 B
Bash
16 lines
309 B
Bash
|
#!/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
|