Update k8s client and the dependencies ACI client change for Mocking Add ACI Provider Mock Tests Add the Windows development environment Add UT for Default Resource Requests Enable the make test in Docker file Update the vendors
14 lines
239 B
Bash
Executable File
14 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.[45](\..*)?$ ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
go get github.com/ernesto-jimenez/gogen/imports
|
|
go generate ./...
|
|
if [ -n "$(git diff)" ]; then
|
|
echo "Go generate had not been run"
|
|
git diff
|
|
exit 1
|
|
fi
|