e5136332e3
* fix up example test build * build and test micro when cutting a new release
14 lines
282 B
Bash
Executable File
14 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
# set -x
|
|
|
|
failed=0
|
|
go mod edit -replace github.com/micro/go-micro/v2=github.com/micro/go-micro/v2@$1
|
|
# basic test, build the binary
|
|
go build
|
|
failed=$?
|
|
if [ $failed -gt 0 ]; then
|
|
exit $failed
|
|
fi
|
|
# unit tests
|
|
IN_TRAVIS_CI=yes go test -v ./...
|
|
# TODO integration tests |