Add build and test of micro to pre-release testing (#1684)

* fix up example test build

* build and test micro when cutting a new release
This commit is contained in:
Dominic Wong
2020-06-04 13:46:22 +01:00
parent f10fd4b479
commit e5136332e3
3 changed files with 50 additions and 4 deletions

14
.github/workflows/scripts/build-micro.sh vendored Executable file
View File

@@ -0,0 +1,14 @@
#!/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