mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
9 lines
105 B
Bash
Executable File
9 lines
105 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
TAG=${1}
|
|
|
|
if [ -z "$TAG" ]; then
|
|
TAG="community"
|
|
fi
|
|
|
|
go test -v ../... -tags=${TAG} |